
/* Modal Styles - Based on screenshots */
.feedback-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.feedback-modal-content {
    max-width: 600px;
    height: auto;
    margin: 2% auto;
    background: linear-gradient(135deg, #2d2a6d 0%, #c99a2c 100%);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.feedback-close {
    color: white;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1002;
}

.feedback-close:hover {
    color: #ddd;
}

.feedback-header {
    background: transparent;
    color: white;
    padding: 40px 30px 30px;
    text-align: center;
}

.feedback-header h1 {
    font-size: 48px;
    margin-bottom: 8px;
    font-weight: bold;
}

.feedback-header .arabic-text {
    font-size: 32px;
    margin: 0;
    opacity: 0.9;
}

.feedback-form {
    background: white;
    padding: 30px;
    margin: 0;
    max-height: 60vh;
    overflow-y: auto;
}

.feedback-form .form-group {
    margin-bottom: 20px;
}

.feedback-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
    border-color: #c99a2c;
    box-shadow: 0 0 0 0.2rem rgba(201, 154, 44, 0.25);
    outline: none;
}

.feedback-form .radio-group {
    display: flex;
    gap: 40px;
    margin-top: 10px;
}

.feedback-form .radio-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 0;
}

.feedback-form .radio-group input[type="radio"] {
    width: auto;
    margin-right: 10px;
    transform: scale(1.5);
}

.feedback-submit-btn {
    background: linear-gradient(135deg, #2d2a6d 0%, #c99a2c 100%);
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 20px;
    cursor: pointer;
}

.feedback-submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feedback-submit-btn:disabled {
    background: #6c757d !important;
    cursor: not-allowed !important;
    transform: none !important;
    opacity: 0.6 !important;
}
