/* Popup Form Styling */
#send-design {
    border-radius: 10px;
}
.popup-form {
    max-width: 400px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.popup-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

.popup-form input[type="text"],
.popup-form input[type="tel"],
.popup-form input[type="file"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.popup-form.fancybox__content {
    cursor: auto;
}
.popup-form input[type="file"] {
    margin-bottom: 0;
}


/*.popup-form button {*/
/*    width: 100%;*/
/*    padding: 10px;*/
/*    background: #0073aa;*/
/*    color: #fff;*/
/*    border: none;*/
/*    border-radius: 4px;*/
/*    cursor: pointer;*/
/*    font-size: 16px;*/
/*}*/
/*.popup-form button:hover {*/
/*    background: #005a87;*/
/*}*/

.popup-form .copying_form_button {
    padding: 20px 0;
}
.popup-form button {
    width: 100%;
}
.popup-form button:disabled {
    opacity: 0.5;
}
/* Form Messages */
.form-message {
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    display: none;
    text-align: center;
    font-weight: bold;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}