body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.card {
    border: none;
    border-radius: 0.5rem;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.btn {
    border-radius: 0.375rem;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.navbar-brand {
    font-weight: 600;
}

.menu-card {
    transition: box-shadow 0.2s ease-in-out;
}

.menu-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.menu-card .card-img-top {
    height: 180px;
    object-fit: cover;
}

.table th {
    font-weight: 600;
    background-color: #f8f9fa;
}

.badge {
    font-size: 0.875em;
    padding: 0.5em 0.75em;
    font-weight: 600;
}

.position-fixed .badge {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#notificationCount {
    font-size: 0.65em;
    padding: 0.3em 0.45em;
    transform: translate(-60%, 20%) !important;
    min-width: 1.4em;
    height: 1.6em;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-container .badge {
    background-color: #0d6efd !important;
    color: white !important;
}

.alert {
    border-radius: 0.375rem;
}

.spinner-border-sm {
    vertical-align: middle;
    margin-right: 0.25rem;
}

@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
}

@media print {
    .navbar,
    .btn,
    footer {
        display: none !important;
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

.dashboard-header {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.dashboard-header h2 {
    font-weight: 600;
    color: #2c3e50;
}

.section-title {
    font-weight: 600;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #e9ecef;
    height: 100%;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-icon i {
    display: inline-block;
    font-family: "bootstrap-icons" !important;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.stat-card-primary {
    border-left: 4px solid #0d6efd;
}

.stat-card-primary .stat-icon {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd !important;
}

.stat-card-primary .stat-icon i::before {
    color: #0d6efd !important;
}

.stat-card-success {
    border-left: 4px solid #198754;
}

.stat-card-success .stat-icon {
    background: rgba(25, 135, 84, 0.1);
    color: #198754 !important;
}

.stat-card-success .stat-icon i::before {
    color: #198754 !important;
}

.stat-card-warning {
    border-left: 4px solid #ffc107;
}

.stat-card-warning .stat-icon {
    background: rgba(255, 193, 7, 0.1);
    color: #b38f00 !important;
}

.stat-card-warning .stat-icon i::before {
    color: #b38f00 !important;
}

.stat-card-info {
    border-left: 4px solid #0dcaf0;
}

.stat-card-info .stat-icon {
    background: rgba(13, 202, 240, 0.1);
    color: #0dcaf0 !important;
}

.stat-card-info .stat-icon i::before {
    color: #0dcaf0 !important;
}

.stat-content {
    flex: 1;
    min-width: 0;
}

.stat-label {
    font-size: 0.8125rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.375rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

.meal-confirm-card {
    border-radius: 12px;
    padding: 1.5rem;
    color: #fff;
    transition: all 0.3s ease;
}

.meal-confirm-active {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

.meal-confirm-success {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
}

.meal-confirm-warning {
    background: linear-gradient(135deg, #ffc107 0%, #cc9a06 100%);
    color: #212529;
}

.meal-confirm-warning .meal-confirm-title,
.meal-confirm-warning .meal-confirm-status {
    color: #212529;
}

.meal-confirm-error {
    background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%);
}

.meal-confirm-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.meal-confirm-title {
    font-weight: 600;
    color: #fff;
}

.meal-confirm-status {
    color: rgba(255, 255, 255, 0.9);
}

.meal-confirm-card .btn-light {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.meal-confirm-card .btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.meal-confirm-card .btn-light:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1rem;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    text-decoration: none;
    color: #495057;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.quick-action-btn:hover {
    border-color: #0d6efd;
    color: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(13, 110, 253, 0.15);
    text-decoration: none;
}

.quick-action-icon {
    width: 48px;
    height: 48px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0d6efd;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
}

.quick-action-btn:hover .quick-action-icon {
    background: #0d6efd;
    color: #fff;
}

.quick-action-label {
    font-weight: 500;
    font-size: 0.9375rem;
    text-align: center;
}

.content-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.header-icon {
    width: 36px;
    height: 36px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    margin-right: 0.75rem;
}

.header-icon-secondary {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.header-icon-warning {
    background: rgba(255, 193, 7, 0.15);
    color: #b38f00;
}

.content-card-header h5 {
    font-weight: 600;
    color: #2c3e50;
}

.content-card-body {
    padding: 1.5rem;
    flex: 1;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.menu-item-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.menu-item-info {
    flex: 1;
    min-width: 0;
}

.menu-item-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.menu-item-type {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-item-price {
    background: #0d6efd;
    color: #fff;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9375rem;
    white-space: nowrap;
}

.menu-item-card {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 0.625rem 0.875rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid #e9ecef;
}

.menu-item-card .menu-item-info {
    flex: 1;
    min-width: 0;
}

.menu-item-card .menu-item-name {
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
}

.menu-item-card .menu-item-type {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.4;
}

.menu-item-card .menu-item-price {
    background: #0d6efd;
    color: #fff;
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8125rem;
    white-space: nowrap;
}

.activity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 32px;
    height: 32px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.activity-icon.success {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.activity-icon.warning {
    background: rgba(255, 193, 7, 0.1);
    color: #b38f00;
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.125rem;
}

.activity-time {
    font-size: 0.8125rem;
    color: #6c757d;
}

.empty-state {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.empty-state-icon {
    width: 64px;
    height: 64px;
    background: #f8f9fa;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #adb5bd;
    font-size: 1.75rem;
}

.empty-state-text {
    color: #6c757d;
    margin-bottom: 0;
}

.meal-type-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.meal-type-option {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    margin: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.meal-type-option:hover {
    border-color: #0d6efd;
    background: rgba(13, 110, 253, 0.02);
}

.meal-type-option input:checked + label {
    color: #0d6efd;
}

.meal-type-option:has(input:checked) {
    border-color: #0d6efd;
    background: rgba(13, 110, 253, 0.05);
}

.meal-type-option .form-check-input {
    margin-top: 0.125rem;
}

.meal-type-option .form-check-label {
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .stat-card {
        padding: 1rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .stat-value {
        font-size: 1.125rem;
    }
    
    .meal-confirm-card .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .meal-confirm-icon {
        margin-right: 0 !important;
        margin-bottom: 1rem;
    }
    
    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-action-btn {
        padding: 1rem 0.75rem;
    }
    
    .quick-action-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.meal-type-selector {
    display: inline-flex;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 4px;
    gap: 4px;
}

.meal-type-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
}

.meal-type-btn:hover {
    color: #495057;
    background: rgba(0, 0, 0, 0.03);
}

.btn-check:checked + .meal-type-btn {
    background: #fff;
    color: #0d6efd;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.date-selector-card {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-radius: 10px;
    padding: 0.625rem 1rem;
    color: #fff;
}

.date-selector-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.date-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.date-nav-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.date-nav-btn:active {
    transform: scale(0.95);
}

.date-display {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 0.375rem 0.875rem;
    font-weight: 600;
    font-size: 0.875rem;
    min-width: 140px;
    text-align: center;
    text-transform: capitalize;
}

.date-quick-select {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    align-items: center;
}

.date-quick-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 0.375rem 0.625rem;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-quick-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.date-quick-btn:active {
    transform: scale(0.97);
}

.date-picker-hidden {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.menu-category-section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.menu-category {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.menu-category-header h6 {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9375rem;
    margin: 0;
}

.category-count {
    font-size: 0.75rem;
    color: #6c757d;
    background: #f8f9fa;
    padding: 0.2rem 0.625rem;
    border-radius: 12px;
}

.menu-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.menu-dish-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.menu-dish-content {
    padding: 1rem;
    flex: 1;
}

.menu-dish-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 0.375rem;
    line-height: 1.3;
}

.menu-dish-description {
    font-size: 0.8125rem;
    color: #6c757d;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-dish-footer {
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.menu-dish-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-reviews {
    background: #6c757d;
    border: 1px solid #6c757d;
    color: #fff;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.btn-reviews:hover {
    background: #5c636a;
    border-color: #5c636a;
    color: #fff;
}

.btn-buy {
    background: #0d6efd;
    border: 1px solid #0d6efd;
    color: #fff;
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.btn-buy:hover {
    background: #0b5ed7;
    border-color: #0b5ed7;
}

.menu-dish-price {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: #fff;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-block;
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-dish-card.past-menu {
    opacity: 0.7;
    background: #f8f9fa;
}

.menu-dish-card.past-menu .menu-dish-name {
    color: #6c757d;
}

.menu-dish-card.past-menu .btn-buy:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.menu-item-card-static {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 0.625rem 0.875rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid #e9ecef;
}

.menu-item-card-static .menu-item-info {
    flex: 1;
    min-width: 0;
}

.menu-item-card-static .menu-item-name {
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
}

.menu-item-card-static .menu-item-description {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.4;
}

.menu-item-card-static .menu-item-price {
    background: #0d6efd;
    color: #fff;
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8125rem;
    white-space: nowrap;
}

.dropdown-menu .dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 0;
    margin: 0;
    transition: all 0.15s ease;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:active {
    background-color: rgba(13, 110, 253, 0.1) !important;
    color: inherit;
}

.notification-unread-indicator {
    position: absolute;
    top: 0.75rem;
    left: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: #0d6efd;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.2);
}

.notification-item-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
    position: relative;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-footer {
    padding: 0;
}

.notification-footer .dropdown-item {
    display: block;
    text-align: center;
    padding: 0.75rem 1rem;
    margin: 0;
    border-radius: 0;
    font-weight: 500;
}

.notification-footer .dropdown-item:hover,
.notification-footer .dropdown-item:focus,
.notification-footer .dropdown-item:active {
    background-color: rgba(13, 110, 253, 0.1) !important;
    color: #0d6efd;
}

.quick-amount-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.quick-amount-buttons .btn {
    border-radius: 6px;
    font-weight: 500;
}

.subscription-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.subscription-option {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    margin: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.subscription-option:hover {
    border-color: #0d6efd;
    background: rgba(13, 110, 253, 0.02);
}

.subscription-option:has(input:checked) {
    border-color: #0d6efd;
    background: rgba(13, 110, 253, 0.05);
}

.subscription-option .form-check-input {
    margin-top: 0.5rem;
}

.subscription-option .form-check-label {
    cursor: pointer;
    padding-left: 0.5rem;
}

.subscription-detail {
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.header-icon-success {
    background: rgba(25, 135, 84, 0.1) !important;
    color: #198754 !important;
}

.rating-selector .btn-group {
    border-radius: 8px;
}

.rating-selector .btn {
    border: 1px solid #ffc107;
    color: #b38f00;
    font-weight: 600;
}

.rating-selector .btn-check:checked + .btn {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #212529;
}

.rating-selector .btn:hover {
    background-color: rgba(255, 193, 7, 0.1);
}

.rating-labels {
    font-size: 0.75rem;
}

.alert-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-icon.danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

@media (max-width: 1200px) {
    .menu-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .date-selector-content {
        flex-direction: column;
        text-align: center;
    }
    
    .date-nav {
        width: 100%;
        justify-content: center;
    }
    
    .date-quick-select {
        width: 100%;
        justify-content: center;
    }
    
    .menu-cards-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .menu-dish-content {
        padding: 0.75rem;
    }
    
    .menu-dish-name {
        font-size: 0.9375rem;
    }
    
    .menu-dish-footer {
        padding: 0.5rem 0.75rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .menu-dish-actions {
        gap: 0.375rem;
        justify-content: flex-end;
    }
    
    .btn-reviews,
    .btn-buy {
        padding: 0.25rem 0.5rem;
        font-size: 0.8125rem;
    }
    
    .menu-dish-price {
        font-size: 0.875rem;
        padding: 0.25rem 0.625rem;
    }
    
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .date-selector-card {
        padding: 0.75rem;
    }
    
    .date-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }
    
    .date-display {
        padding: 0.375rem 0.75rem;
        min-width: 120px;
        font-size: 0.875rem;
    }
    
    .date-quick-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
}
