
    /* ========== HERO SECTION ========== */
    .hero-section {
        position: relative;
        background: linear-gradient(135deg, #1a1f36 0%, #0f172a 100%);
        background-image: url('https://images.pexels.com/photos/3861972/pexels-photo-3861972.jpeg?auto=compress&cs=tinysrgb&w=1600');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        margin-bottom: 60px;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(26, 31, 54, 0.9) 0%, rgba(15, 23, 42, 0.85) 100%);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 56px;
        font-weight: 800;
        margin-bottom: 20px;
        animation: fadeInUp 0.8s ease;
    }

    .hero-content h1 i {
        color: #fbbf24;
        margin-right: 15px;
    }

    .hero-content p {
        font-size: 20px;
        opacity: 0.95;
        margin-bottom: 30px;
        animation: fadeInUp 1s ease;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-top: 40px;
        animation: fadeInUp 1.2s ease;
    }

    .hero-stat {
        text-align: center;
    }

    .hero-stat .number {
        font-size: 36px;
        font-weight: 700;
        color: #fbbf24;
    }

    .hero-stat .label {
        font-size: 14px;
        opacity: 0.8;
        margin-top: 5px;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ========== MAIN CONTAINER ========== */
    .feedback-main {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px 60px;
    }

    /* ========== SIDE BY SIDE LAYOUT ========== */
    .feedback-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 60px;
min-height: 600px;
background: var(--primary-light);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    }

    /* ========== ENCOURAGEMENT CARD ========== */
    .encouragement-card {
       background: linear-gradient(135deg, var(--primary-dark), var(--gray-900));
        padding: 40px;
        color: white;
        position: relative;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .encouragement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23238636' fill-opacity='0.1' d='M0,224L48,213.3C96,203,192,181,288,160C384,139,480,117,576,122.7C672,128,768,160,864,170.7C960,181,1056,171,1152,165.3C1248,160,1344,160,1392,160L1440,160L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    pointer-events: none;
    animation: slowDrift 30s infinite alternate ease-in-out;
}

    .encouragement-icon {
        font-size: 60px;
        margin-bottom: 30px;
        animation: bounce 2s infinite;
    }

    @keyframes bounce {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    .encouragement-card h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .encouragement-card p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
        opacity: 0.95;
    }

    .benefits-list {
        list-style: none;
        margin-top: 20px;
    }

    .benefits-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .benefits-list li i {
        font-size: 18px;
        color: #fbbf24;
    }

    .testimonial {
        background: rgba(255, 255, 255, 0.15);
        border-radius: 16px;
        padding: 20px;
        margin-top: 30px;
        backdrop-filter: blur(10px);
    }

    .testimonial p {
        font-style: italic;
        margin-bottom: 10px;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .testimonial-author img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
    }

    /* ========== FORM CARD ========== */
.form-card {
    background: var(--primary-light);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: auto;
    overflow: visible;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
     color: white;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
}

/* Ensure no scrolling anywhere */
.feedback-main {
    overflow: visible;
}

.feedback-grid {
    overflow: visible;
    align-items: stretch;
}

/* Make both cards equal height naturally */
.encouragement-card,
.form-card {
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: visible;
}

/* Form content should flow naturally */
.form-card form {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: visible;
}
.form-group input,
.form-group select,
.form-group textarea {
    background: white;
    color: #1a1f36;
}
.form-group select option{
    color: black;
}

/* Adjust textarea to not cause scroll */
textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* Responsive */
@media (max-width: 768px) {
    .form-card {
        padding: 25px;
    }
    
    .form-title {
        font-size: 20px;
        padding-bottom: 12px;
    }
}
    .rating-container {
        margin-bottom: 25px;
    }

    .rating-label {
        font-weight: 600;
         color: white;
        margin-bottom: 10px;
        display: block;
    }

    .stars {
        display: flex;
        gap: 12px;
        cursor: pointer;
    }

    .stars i {
        font-size: 32px;
        color: #d1d5db;
        transition: all 0.2s;
    }

    .stars i:hover,
    .stars i.active {
        color: #fbbf24;
    }

    .rating-text {
        margin-top: 10px;
        font-size: 14px;
        color: #6b7280;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        font-weight: 600;
         color: white;
        margin-bottom: 8px;
    }

    .required {
        color: #ef4444;
    }

    .form-control {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid #d1d5db;
        border-radius: 12px;
        font-size: 14px;
        font-family: 'Inter', sans-serif;
        transition: all 0.2s;
    }

    .form-control:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    textarea.form-control {
        resize: vertical;
        min-height: 120px;
    }

    .btn-submit {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        color: white;
        border: none;
        padding: 14px 32px;
        border-radius: 40px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    }

    .alert {
        padding: 14px 18px;
        border-radius: 12px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .alert-success {
        background: #d1fae5;
        color: #065f46;
        border: 1px solid #a7f3d0;
    }

    .alert-error {
        background: #fee2e2;
        color: #991b1b;
        border: 1px solid #fecaca;
    }

    /* ========== HERO FOOTER SECTION ========== */
    .hero-footer {
        position: relative;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            background-image: url('https://images.unsplash.com/photo-1556761175-4b46a572b786?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 80px 20px;
        margin-top: 60px;
        position: relative;
        overflow: hidden;
    }

    .hero-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    }

    .hero-footer-content {
        position: relative;
        z-index: 2;
        max-width: 1000px;
        margin: 0 auto;
        text-align: center;
        color: white;
    }

    .hero-footer h2 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .hero-footer p {
        font-size: 18px;
        opacity: 0.9;
        margin-bottom: 30px;
    }

    .feature-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 50px;
    }

    .feature-item {
        text-align: center;
        padding: 20px;
    }

    .feature-item i {
        font-size: 48px;
        color: #fbbf24;
        margin-bottom: 15px;
    }

    .feature-item h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .feature-item p {
        font-size: 14px;
        opacity: 0.8;
    }

    /* ========== PREVIOUS FEEDBACK SECTION ========== */
    .previous-feedback {
        margin-top: 60px;
    }

    .section-title {
        font-size: 24px;
        font-weight: 700;
        color: white;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .feedback-list {
        display: grid;
        gap: 20px;
    }

    .feedback-item {
        background: white;
        border-radius: 16px;
        padding: 20px;
        border: 1px solid #e5e7eb;
        transition: all 0.2s;
    }

    .feedback-item:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .feedback-header-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .feedback-rating i {
        font-size: 14px;
    }

    .feedback-status {
        font-size: 12px;
        padding: 4px 12px;
        border-radius: 20px;
        font-weight: 600;
    }

    .status-pending {
        background: #fef3c7;
        color: #92400e;
    }

    .status-in_review {
        background: #dbeafe;
        color: #1e40af;
    }

    .status-responded {
        background: #d1fae5;
        color: #065f46;
    }

    .status-resolved {
        background: #e5e7eb;
        color: #374151;
    }

    .feedback-title {
        font-weight: 600;
        color: #1a1f36;
        margin-bottom: 8px;
    }

    .feedback-message {
        color: #6b7280;
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .feedback-meta {
        font-size: 12px;
        color: #9ca3af;
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .feedback-response {
        background: #f9fafb;
        padding: 12px 16px;
        border-radius: 12px;
        margin-top: 12px;
        border-left: 3px solid #3b82f6;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
        .feedback-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .hero-content h1 {
            font-size: 42px;
        }

        .feature-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 32px;
        }

        .hero-content p {
            font-size: 16px;
        }

        .hero-stats {
            flex-direction: column;
            gap: 20px;
        }

        .feature-grid {
            grid-template-columns: 1fr;
        }

        .encouragement-card {
            padding: 30px;
        }

        .form-card {
            padding: 30px;
        }

        .hero-footer h2 {
            font-size: 28px;
        }
    }

/* ========== PREVIOUS FEEDBACK SECTION - PROFESSIONAL STYLES ========== */

.previous-feedback {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.section-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.section-title-wrapper {
    flex: 1;
}



.section-subtitle {
    font-size: 14px;
    color: #6b7280;
}

.section-stats {
    display: flex;
    gap: 15px;
}

.stat-badge {
    background: #f3f4f6;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}

.stat-badge i {
    margin-right: 6px;
    color: #3b82f6;
}

/* Feedback Grid */
.feedback-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 25px;
}

/* Feedback Card */
.feedback-card-modern {
    background: white;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.feedback-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

/* Card Header */
.card-header {
    padding: 18px 20px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-badge .fa-star.filled {
    color: #fbbf24;
}

.rating-badge .fa-star.empty {
    color: #e5e7eb;
}

.rating-value {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    margin-left: 5px;
}

/* Status Indicator */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 30px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.status-pending { background: #fef3c7; color: #92400e; }
.status-in_review { background: #dbeafe; color: #1e40af; }
.status-responded { background: #d1fae5; color: #065f46; }
.status-resolved { background: #e5e7eb; color: #374151; }

.status-pending .status-dot { background: #f59e0b; }
.status-in_review .status-dot { background: #3b82f6; }
.status-responded .status-dot { background: #10b981; }
.status-resolved .status-dot { background: #6b7280; }

/* Card Body */
.card-body {
    padding: 20px;
}

.feedback-title-modern {
    font-size: 16px;
    font-weight: 600;
    color: #1a1f36;
    margin-bottom: 10px;
    line-height: 1.4;
}

.feedback-message-modern {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Tags */
.feedback-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    font-size: 11px;
    padding: 4px 10px;
    background: #f3f4f6;
    border-radius: 20px;
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.tag i {
    font-size: 10px;
    color: #9ca3af;
}

.tag-replied {
    background: #d1fae5;
    color: #065f46;
}

.tag-replied i {
    color: #10b981;
}

/* Admin Response */
.card-response {
    margin: 0 20px 20px 20px;
    background: #f0fdf4;
    border-left: 3px solid #10b981;
    border-radius: 10px;
    overflow: hidden;
}

.response-header {
    padding: 12px 15px;
    background: #dcfce7;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    border-bottom: 1px solid #bbf7d0;
}

.response-header i {
    color: #10b981;
}

.response-date {
    font-size: 10px;
    color: #6b7280;
    margin-left: auto;
}

.response-body {
    padding: 12px 15px;
    font-size: 13px;
    color: #4b5563;
    line-height: 1.5;
}

.read-more {
    color: #3b82f6;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
}

.read-more:hover {
    text-decoration: underline;
}

/* Card Footer */
.card-footer {
    padding: 15px 20px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-view {
    background: transparent;
    border: 1px solid #d1d5db;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-view:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.pending-badge {
    font-size: 11px;
    color: #f59e0b;
    background: #fef3c7;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* View More Button */
.view-more-container {
    text-align: center;
    margin-top: 40px;
}

.btn-view-more {
    background: transparent;
    border: 1px solid #d1d5db;
    padding: 12px 30px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-view-more:hover {
    background: #f3f4f6;
    border-color: #3b82f6;
    color: #3b82f6;
}

/* Modal for Full Details (add this if you want a modal) */
.feedback-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.feedback-modal-content {
    background: white;
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .feedback-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-stats {
        width: 100%;
        justify-content: space-between;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========== FEEDBACK MODAL STYLES ========== */

.feedback-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: modalFadeIn 0.3s ease;
}

.feedback-modal.closing {
    animation: modalFadeOut 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(4px);
    }
}

@keyframes modalFadeOut {
    from {
        opacity: 1;
        backdrop-filter: blur(4px);
    }
    to {
        opacity: 0;
        backdrop-filter: blur(0);
    }
}

.feedback-modal-content {
    background: white;
    border-radius: 28px;
    width: 90%;
    max-width: 550px;
    max-height: 85vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal Header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 28px 28px 0 0;
    position: sticky;
    top: 0;
    z-index: 1;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1f36;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-close-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.2s;
    font-size: 18px;
}

.modal-close-btn:hover {
    background: #fee2e2;
    color: #ef4444;
}

/* Modal Body */
.modal-body {
    padding: 24px;
}

/* Modal Sections */
.modal-section {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.modal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.modal-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-label i {
    font-size: 14px;
    color: #3b82f6;
}

.modal-value {
    font-size: 15px;
    color: #1a1f36;
    line-height: 1.5;
}

/* Rating Value */
.rating-value {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.rating-value i {
    font-size: 18px;
}

.rating-number {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

/* Title Value */
.title-value {
    font-weight: 600;
    font-size: 16px;
    background: #f9fafb;
    padding: 12px 15px;
    border-radius: 12px;
}

/* Message Value */
.message-value {
    background: #f9fafb;
    padding: 15px;
    border-radius: 12px;
    line-height: 1.6;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Suggestions Section */
.suggestions-section {
    background: #fefce8;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.suggestions-section .modal-label {
    color: #854d0e;
}

.suggestions-section .modal-label i {
    color: #eab308;
}

.suggestions-value {
    color: #854d0e;
    font-style: italic;
}

/* Response Section */
.response-section {
    background: #f0fdf4;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.response-section .modal-label {
    color: #065f46;
}

.response-section .modal-label i {
    color: #10b981;
}

.response-section.no-response {
    background: #fef3c7;
}

.response-section.no-response .modal-label {
    color: #92400e;
}

.response-section.no-response .modal-label i {
    color: #f59e0b;
}

.admin-response-content {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.admin-response-content i {
    color: #10b981;
    margin-top: 2px;
}

.no-response-content {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #92400e;
}

.no-response-content i {
    font-size: 18px;
}

/* Date Section */
.date-section {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 15px;
    margin-top: 10px;
}

.date-value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #475569;
}

.date-value i {
    color: #64748b;
}

/* Modal Footer */
.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    background: #f8fafc;
    border-radius: 0 0 28px 28px;
}

.modal-close-btn-footer {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-close-btn-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Scrollbar for modal */
.feedback-modal-content::-webkit-scrollbar {
    width: 6px;
}

.feedback-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.feedback-modal-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.feedback-modal-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Responsive */
@media (max-width: 640px) {
    .feedback-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-header h3 {
        font-size: 18px;
    }
    
    .modal-body {
        padding: 18px;
    }
    
    .modal-section {
        margin-bottom: 18px;
        padding-bottom: 15px;
    }
    
    .modal-close-btn-footer {
        width: 100%;
        justify-content: center;
    }
}
