@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #15803d;
    --primary-light: #dcfce7;
    --accent: #b91c1c;
    --dark: #000000;
    --text: #333333;
    --light: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --star-color: #fbbf24;
    --star-inactive: #d1d5db;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.feedback-body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0f9ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    color: var(--text);
    line-height: 1.6;
}

.feedback-wrapper {
    width: 100%;
    max-width: 640px;
}

.feedback-card {
    background: var(--light);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feedback-header {
    background: linear-gradient(135deg, var(--primary) 0%, #166534 100%);
    color: var(--light);
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feedback-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.feedback-header::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.feedback-logo {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feedback-logo img {
    height: 60px;
    width: auto;
}

.feedback-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--light);
    position: relative;
    z-index: 1;
}

.feedback-subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.feedback-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.5rem 1.5rem 0;
    padding: 1rem 1.25rem;
    background: #fef3c7;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    font-size: 0.8rem;
    color: #92400e;
    line-height: 1.5;
}

.feedback-disclaimer i {
    font-size: 1.1rem;
    margin-top: 0.1rem;
    color: #d97706;
    flex-shrink: 0;
}

.feedback-errors {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1rem 1.5rem 0;
    padding: 1rem 1.25rem;
    background: #fef2f2;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    color: var(--accent);
    font-size: 0.875rem;
}

.feedback-errors i {
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.feedback-errors ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feedback-errors li {
    padding: 0.15rem 0;
}

.feedback-form {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-group label i {
    color: var(--primary);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: #fafafa;
    color: var(--text);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--light);
    box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.12);
}

.form-control::placeholder {
    color: #9ca3af;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ca3af' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.dob-row {
    display: flex;
    gap: 0.75rem;
}

.dob-field {
    flex: 1;
}

.dob-field:last-child {
    flex: 1.4;
}


.form-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    gap: 1rem;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.form-divider span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    white-space: nowrap;
}

.rating-group {
    margin-bottom: 1.75rem;
    padding: 1.25rem;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    transition: var(--transition);
}

.rating-group:hover {
    border-color: #e5e7eb;
    background: #f9fafb;
}

.rating-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    line-height: 1.4;
}

.rating-group label i {
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.rating-hint {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
    padding-left: 1.4rem;
}

.rating-scale {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.rating-label-left,
.rating-label-right {
    font-size: 0.7rem;
    color: #9ca3af;
    white-space: nowrap;
    min-width: 60px;
}

.rating-label-left {
    text-align: right;
}

.rating-label-right {
    text-align: left;
}

.star-rating {
    display: flex;
    gap: 0.35rem;
    cursor: pointer;
    padding: 0.25rem 0;
}

.star-rating .fa-star {
    font-size: 1.75rem;
    color: var(--star-inactive);
    transition: all 0.15s ease;
    cursor: pointer;
}

.star-rating .fa-star.active {
    color: var(--star-color);
    transform: scale(1.1);
}

.star-rating .fa-star:hover {
    transform: scale(1.2);
}

.optional-badge {
    font-size: 0.7rem;
    font-weight: 500;
    background: #e5e7eb;
    color: #6b7280;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    margin-left: 0.25rem;
}

.input-hint {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent) 0%, #991b1b 100%);
    color: var(--light);
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(185, 28, 28, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.feedback-footer-note {
    text-align: center;
    padding: 1.25rem;
    font-size: 0.8rem;
    color: #9ca3af;
    border-top: 1px solid #f3f4f6;
}

/* ========================================
   SUCCESS PAGE
   ======================================== */

.success-card {
    text-align: center;
    padding: 2.5rem 2rem;
}

.success-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #166534 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    animation: scaleIn 0.5s ease;
}

.success-icon i {
    font-size: 2rem;
    color: var(--light);
}

.success-pulse {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(21, 128, 61, 0.2);
    animation: successPulse 2s ease infinite;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

@keyframes successPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.success-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.success-subtitle {
    color: var(--text);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.success-proof {
    background: #f9fafb;
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

.proof-header {
    background: linear-gradient(135deg, var(--primary) 0%, #166534 100%);
    color: var(--light);
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.proof-details {
    padding: 1.25rem;
}

.proof-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.proof-row:last-of-type {
    border-bottom: none;
}

.proof-label {
    font-size: 0.85rem;
    color: #6b7280;
}

.proof-value {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    text-align: right;
}

.ref-code {
    font-family: 'Courier New', monospace;
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.proof-ratings {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.proof-rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.proof-rating-item span {
    font-size: 0.85rem;
    color: #6b7280;
}

.proof-stars .fa-star {
    font-size: 0.9rem;
    color: var(--star-inactive);
    margin: 0 1px;
}

.proof-stars .fa-star.active {
    color: var(--star-color);
}

.success-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.success-branding img {
    height: 40px;
    width: auto;
    opacity: 0.6;
}

.success-branding p {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* ========================================
   ADMIN PANEL
   ======================================== */

.admin-body {
    font-family: 'Inter', sans-serif;
    background: #f1f5f9;
    min-height: 100vh;
    color: var(--text);
    line-height: 1.6;
}

.admin-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0f9ff 100%);
}

.admin-login-card {
    background: var(--light);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 420px;
    overflow: hidden;
    animation: slideUp 0.5s ease;
}

.admin-login-header {
    background: linear-gradient(135deg, var(--primary) 0%, #166534 100%);
    color: var(--light);
    padding: 2rem;
    text-align: center;
}

.admin-login-header i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.admin-login-header h1 {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 0.25rem;
}

.admin-login-header p {
    opacity: 0.85;
    font-size: 0.9rem;
}

.admin-login-form {
    padding: 2rem;
}

.admin-login-form .form-group {
    margin-bottom: 1.25rem;
}

.admin-login-form label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.admin-login-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: #fafafa;
}

.admin-login-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.12);
    background: var(--light);
}

.admin-login-form .btn-login {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, var(--primary) 0%, #166534 100%);
    color: var(--light);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

.admin-login-form .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 128, 61, 0.3);
}

.admin-login-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #fef2f2;
    border-radius: 8px;
    color: var(--accent);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent);
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: linear-gradient(180deg, #0f4c2e 0%, #0f5132 50%, #166534 100%);
    color: var(--light);
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    overflow-y: auto;
    transition: var(--transition);
}

.admin-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.admin-sidebar-brand img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.admin-sidebar-brand span {
    font-weight: 700;
    font-size: 1rem;
}

.admin-sidebar-nav {
    list-style: none;
    padding: 0;
}

.admin-sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.admin-sidebar-nav li a:hover,
.admin-sidebar-nav li a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    border-left-color: var(--star-color);
}

.admin-sidebar-nav li a i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.admin-sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.admin-sidebar-footer a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.admin-sidebar-footer a:hover {
    color: var(--light);
}

.admin-main {
    flex: 1;
    margin-left: 260px;
    padding: 2rem;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-topbar h1 {
    font-size: 1.75rem;
    color: var(--dark);
}

.admin-topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-stat-card {
    background: var(--light);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.admin-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.admin-stat-card.green::before {
    background: linear-gradient(90deg, var(--primary), #22c55e);
}

.admin-stat-card.blue::before {
    background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.admin-stat-card.yellow::before {
    background: linear-gradient(90deg, #d97706, #fbbf24);
}

.admin-stat-card.red::before {
    background: linear-gradient(90deg, var(--accent), #ef4444);
}

.admin-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.admin-stat-card.green .admin-stat-icon {
    background: var(--primary-light);
    color: var(--primary);
}

.admin-stat-card.blue .admin-stat-icon {
    background: #dbeafe;
    color: #2563eb;
}

.admin-stat-card.yellow .admin-stat-icon {
    background: #fef3c7;
    color: #d97706;
}

.admin-stat-card.red .admin-stat-icon {
    background: #fef2f2;
    color: var(--accent);
}

.admin-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.admin-stat-label {
    font-size: 0.85rem;
    color: #6b7280;
}

.admin-card {
    background: var(--light);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-card-header h2 {
    font-size: 1.1rem;
    color: var(--dark);
}

.admin-card-body {
    padding: 1.5rem;
    overflow-x: auto;
}

.admin-filters {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.admin-filters select,
.admin-filters input[type="date"] {
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--text);
    cursor: pointer;
}

.admin-filters select:focus,
.admin-filters input[type="date"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(21, 128, 61, 0.1);
}

.admin-filters .btn-filter {
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

.admin-filters .btn-filter:hover {
    background: #166534;
}

.admin-filters .btn-export {
    padding: 0.5rem 1rem;
    background: #2563eb;
    color: var(--light);
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.admin-filters .btn-export:hover {
    background: #1d4ed8;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.admin-table thead th {
    background: #f9fafb;
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #6b7280;
    border-bottom: 2px solid #e5e7eb;
    white-space: nowrap;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.admin-table tbody tr {
    border-bottom: 1px solid #f3f4f6;
    transition: var(--transition);
}

.admin-table tbody tr:hover {
    background: #f9fafb;
}

.admin-table tbody td {
    padding: 0.875rem 1rem;
    vertical-align: middle;
}

.admin-table .stars-cell .fa-star {
    font-size: 0.8rem;
    color: var(--star-inactive);
}

.admin-table .stars-cell .fa-star.active {
    color: var(--star-color);
}

.admin-table .branch-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.admin-table .comment-cell {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-table .ref-cell {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--primary);
}

.admin-mobile-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 200;
    background: var(--primary);
    color: var(--light);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.25rem;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.admin-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
}

@media (max-width: 1024px) {
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feedback-card {
        border-radius: 16px;
    }

    .feedback-header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .feedback-header h1 {
        font-size: 1.5rem;
    }

    .feedback-disclaimer {
        margin: 1rem 1rem 0;
    }

    .feedback-form {
        padding: 1.25rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .rating-scale {
        flex-direction: column;
        gap: 0.25rem;
    }

    .rating-label-left,
    .rating-label-right {
        text-align: center;
        min-width: auto;
    }

    .star-rating .fa-star {
        font-size: 2rem;
    }

    .admin-sidebar {
        transform: translateX(-100%);
    }

    .admin-sidebar.active {
        transform: translateX(0);
    }

    .admin-main {
        margin-left: 0;
        padding: 1rem;
        padding-top: 4rem;
    }

    .admin-mobile-toggle {
        display: flex;
    }

    .admin-overlay.active {
        display: block;
    }

    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    .admin-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-filters {
        width: 100%;
    }

    .admin-filters select,
    .admin-filters input[type="date"] {
        flex: 1;
        min-width: 0;
    }

    .admin-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .admin-topbar h1 {
        font-size: 1.25rem;
    }

    .proof-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .proof-value {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .feedback-body {
        padding: 0.75rem;
    }

    .star-rating .fa-star {
        font-size: 2.25rem;
        gap: 0.5rem;
    }

    .star-rating {
        gap: 0.5rem;
    }

    .success-card {
        padding: 2rem 1.25rem;
    }

    .success-title {
        font-size: 1.5rem;
    }
}