/* Modal styles */
.fpm-modal {
    display: none;
    position: fixed;
    bottom: 2px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    max-width: 90%;
    z-index: 9999;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.fpm-modal-content {
    padding: 20px;
    position: relative;
    text-align: center;
}

.fpm-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.fpm-close:hover {
    color: #333;
}

/* Form styles */
#fpm-form {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#fpm-form input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    text-align: center;
}

#fpm-form button {
    width: 100%;
    padding: 10px;
    background-color: #eaa400;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

#fpm-form button:hover {
    background-color: #b68105;
}

#fpm-message {
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
    min-height: 18px;
}

/* Responsive styles */
@media (max-width: 480px) {
    .fpm-modal {
        width: 90%;
    }
}