.return-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.return-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.return-popup h3 {
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.form-row {
    margin-bottom: 15px;
}

.form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-row textarea {
    height: 100px;
    resize: vertical;
}

.form-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.form-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.submit-btn {
    background: #0071a1;
    color: #fff;
}

.close-popup {
    background: #666;
    color: #fff;
}

.return-btn {
    background: #0071a1;
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* File upload styling */
.form-row input[type="file"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
}

/* Error message styling */
.form-error {
    color: #dc3232;
    margin-top: 5px;
    font-size: 0.9em;
}

/* Success message styling */
.form-success {
    color: #46b450;
    margin-top: 5px;
    font-size: 0.9em;
}
