/* site-shared.css - Unified Design System for FarmApp */

/* ===========================
   CSS Variables & Theme Colors
   =========================== */
:root {
    /* Primary Brand Colors - Matching Navbar */
    --primary-dark: #1E3A5F;
    --primary-medium: #2B5A8E;
    --accent-blue: #3D7CC9;
    --light-blue: #7CA3D4;
    --light-blue-soft: #BAD4EC;

    /* Semantic Colors */
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;

    /* Neutral Colors */
    --gray-50: #f8f9fa;
    --gray-100: #f5f7fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;

    /* UI Elements */
    --border-radius: 8px;
    --border-radius-sm: 6px;
    --border-radius-lg: 12px;
    --box-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
    --box-shadow-xl: 0 8px 32px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;
}

/* ===========================
   Base Typography & Body
   =========================== */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--gray-900);
    background-color: var(--gray-100);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
}

/* ===========================
   Headings
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.display-5 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-medium);
}

.text-muted {
    color: var(--gray-600) !important;
}

/* ===========================
   Horizontal Rules
   =========================== */
hr {
    border: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
    margin: 1.5rem 0;
    opacity: 1;
}

/* ===========================
   Cards - Main Content Containers
   =========================== */
.card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    margin-bottom: 1.5rem;
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.card.shadow-sm {
    box-shadow: var(--box-shadow);
}

.card:hover {
    box-shadow: var(--box-shadow-lg);
}

.card-header {
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    border-bottom: 2px solid var(--gray-200);
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.card-header.bg-light {
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    border-bottom: 2px solid var(--light-blue-soft);
}

.card-header h5 {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.card-header.bg-primary h5,
.card-header.text-white h5 {
    color: white !important;
}

.card-body {
    padding: 1.5rem;
}

/* ===========================
   Buttons - Primary Actions
   =========================== */
.btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--box-shadow);
}

.btn:active {
    transform: translateY(0);
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-medium) 0%, var(--accent-blue) 100%);
    border-color: var(--primary-medium);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    border-color: var(--primary-dark);
    color: white;
    box-shadow: 0 4px 12px rgba(43, 90, 142, 0.3);
}

.btn-outline-primary {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
}

/* Success Button */
.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-color: #28a745;
}

.btn-success:hover {
    background: linear-gradient(135deg, #218838 0%, #1aa179 100%);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Danger Button */
.btn-danger,
.btn-outline-danger {
    border-color: var(--danger-color);
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #c82333 0%, #d62c1a 100%);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Secondary Button */
.btn-secondary {
    background-color: var(--gray-200);
    border-color: var(--gray-400);
    color: var(--gray-900);
}

.btn-secondary:hover {
    background-color: var(--gray-400);
    border-color: var(--gray-500);
    color: var(--gray-900);
}

.btn-outline-secondary {
    background-color: transparent;
    border-color: var(--gray-500);
    color: var(--gray-700);
}

.btn-outline-secondary:hover {
    background-color: var(--gray-400);
    border-color: var(--gray-500);
    color: var(--gray-900);
}

/* Button Sizing */
.btn-sm {
    padding: 0.375rem 0.875rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

/* Pill Buttons */
.btn.rounded-pill {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

/* Button Groups */
.btn-group .btn {
    border-radius: 0;
}

.btn-group .btn:first-child {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.btn-group .btn:last-child {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* ===========================
   Forms - Input Elements
   =========================== */
.form-control,
.form-select {
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--gray-300);
    padding: 0.625rem 1rem;
    transition: all var(--transition-base);
    font-size: 0.95rem;
    background-color: white;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(61, 124, 201, 0.15);
    outline: 0;
}

.form-control:disabled,
.form-select:disabled {
    background-color: var(--gray-100);
    border-color: var(--gray-300);
    cursor: not-allowed;
}

.form-label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

/* Input Groups */
.input-group .form-control,
.input-group .btn {
    border-radius: 0;
}

.input-group .form-control:first-child {
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
}

.input-group .btn:last-child {
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

/* Form Validation */
.is-invalid {
    border-color: var(--danger-color);
}

.is-valid {
    border-color: var(--success-color);
}

.text-danger {
    color: var(--danger-color) !important;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* ===========================
   Tables - Data Display
   =========================== */
.table {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 0;
}

.table thead th {
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    border-bottom: 2px solid var(--gray-300);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    color: var(--primary-medium);
    padding: 1rem;
    white-space: nowrap;
}

.table tbody td {
    padding: 0.875rem 1rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--gray-200);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.table-hover tbody tr {
    transition: background-color var(--transition-fast);
}

.table-hover tbody tr:hover {
    background-color: var(--gray-50);
    cursor: pointer;
}

.table-bordered {
    border: 1px solid var(--gray-300);
}

.table-bordered th,
.table-bordered td {
    border: 1px solid var(--gray-300);
}

/* Table in Cards */
.card .table {
    margin-bottom: 0;
}

.card-body .table-responsive {
    margin: -0.5rem -1.5rem;
}

.card-body .table-responsive .table {
    margin-bottom: 0;
}

/* Striped Tables */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.02);
}

/* ===========================
   Badges & Labels
   =========================== */
.badge {
    font-weight: 500;
    padding: 0.4em 0.8em;
    border-radius: var(--border-radius-sm);
    font-size: 0.85em;
}

.badge.rounded-pill {
    padding: 0.35em 0.9em;
    border-radius: 50px;
}

.badge.bg-success {
    background-color: var(--success-color) !important;
}

.badge.bg-danger {
    background-color: var(--danger-color) !important;
}

.badge.bg-primary {
    background: linear-gradient(135deg, var(--primary-medium) 0%, var(--accent-blue) 100%) !important;
}

.badge.bg-secondary {
    background-color: var(--gray-600) !important;
}

/* ===========================
   Alerts & Messages
   =========================== */
.alert {
    border-radius: var(--border-radius);
    border: none;
    border-left: 4px solid;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--box-shadow-sm);
}

.alert-success {
    background-color: #d4edda;
    border-left-color: var(--success-color);
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-left-color: var(--danger-color);
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    border-left-color: var(--warning-color);
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    border-left-color: var(--info-color);
    color: #0c5460;
}

.alert-dismissible .btn-close {
    padding: 1.125rem 1.25rem;
}

/* ===========================
   List Groups
   =========================== */
.list-group-item {
    border: 1px solid var(--gray-200);
    background-color: white;
    padding: 1rem 1.25rem;
    transition: background-color var(--transition-fast);
}

.list-group-item:hover {
    background-color: var(--gray-50);
}

.list-group-item.active {
    background: linear-gradient(135deg, var(--primary-medium) 0%, var(--accent-blue) 100%);
    border-color: var(--primary-medium);
}

/* ===========================
   Modals
   =========================== */
.modal-content {
    border-radius: var(--border-radius-lg);
    border: none;
    box-shadow: var(--box-shadow-xl);
}

.modal-header {
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    border-bottom: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    padding: 1.25rem 1.5rem;
}

.modal-title {
    color: var(--primary-dark);
    font-weight: 600;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid var(--gray-200);
    padding: 1rem 1.5rem;
}

/* ===========================
   Loading States
   =========================== */
.loading-spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-xl);
}

.loading-spinner.active {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.spinner-border {
    color: var(--accent-blue);
}

/* ===========================
   Breadcrumbs & Navigation
   =========================== */
.breadcrumb {
    background-color: transparent;
    padding: 0.75rem 0;
    margin-bottom: 1rem;
}

.breadcrumb-item {
    color: var(--gray-600);
}

.breadcrumb-item.active {
    color: var(--primary-medium);
    font-weight: 500;
}

.breadcrumb-item a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--primary-dark);
}

/* ===========================
   Pagination
   =========================== */
.pagination {
    gap: 0.25rem;
}

.page-link {
    border: 2px solid var(--gray-300);
    color: var(--primary-medium);
    border-radius: var(--border-radius-sm);
    margin: 0 0.125rem;
    transition: all var(--transition-fast);
}

.page-link:hover {
    background-color: var(--gray-50);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-medium) 0%, var(--accent-blue) 100%);
    border-color: var(--primary-medium);
}

/* ===========================
   Tooltips & Popovers
   =========================== */
.tooltip {
    font-size: 0.875rem;
}

.tooltip-inner {
    max-width: 300px;
    padding: 0.5rem 0.75rem;
    text-align: left;
    background-color: var(--primary-dark);
    border-radius: var(--border-radius-sm);
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--primary-dark);
}

/* ===========================
   Progress Bars
   =========================== */
.progress {
    height: 1.25rem;
    border-radius: var(--border-radius);
    background-color: var(--gray-200);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    background: linear-gradient(135deg, var(--primary-medium) 0%, var(--accent-blue) 100%);
    border-radius: var(--border-radius);
    transition: width 0.6s ease;
}

/* ===========================
   Utilities & Helpers
   =========================== */
.text-primary {
    color: var(--accent-blue) !important;
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary-medium) 0%, var(--accent-blue) 100%) !important;
}

.border-primary {
    border-color: var(--accent-blue) !important;
}

/* Shadows */
.shadow-sm {
    box-shadow: var(--box-shadow-sm) !important;
}

.shadow {
    box-shadow: var(--box-shadow) !important;
}

.shadow-lg {
    box-shadow: var(--box-shadow-lg) !important;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 991.98px) {
    .display-5 {
        font-size: 2rem;
    }

    .card {
        margin-bottom: 1rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .table thead th {
        font-size: 0.75rem;
        padding: 0.75rem 0.5rem;
    }

    .table tbody td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    h5 {
        font-size: 1rem;
    }

    .card-body {
        padding: 1rem;
    }

    .card-header {
        padding: 0.875rem 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-group .btn {
        width: auto;
    }
}

/* ===========================
   Print Styles
   =========================== */
@media print {
    body {
        background-color: white;
    }

    .card {
        box-shadow: none;
        border: 1px solid var(--gray-300);
        page-break-inside: avoid;
    }

    .card-header {
        background: white;
        border-bottom: 2px solid var(--gray-300);
    }

    .btn,
    .loading-spinner,
    .modal,
    .alert-dismissible .btn-close {
        display: none !important;
    }

    .table {
        border: 1px solid var(--gray-300);
    }

    .table thead th {
        background: white;
        border: 1px solid var(--gray-300);
    }
}

/* ===========================
   Accessibility
   =========================== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===========================
   Layout Components
   =========================== */
.main-content-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
    padding-bottom: 0;
}

.main-content-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.site-footer {
    text-align: center;
    font-size: 0.85em;
    color: #666;
    padding: 0.5rem;
    border-top: 1px solid #ddd;
    margin: 0;
}

.site-footer-link {
    color: #666;
    text-decoration: none;
    margin: 0 5px;
}

.site-footer-link:hover {
    color: var(--primary-medium);
    text-decoration: underline;
}

/* ===========================
   Utility Classes
   =========================== */
.hidden {
    display: none;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-prewrap {
    white-space: pre-wrap;
}

.cursor-pointer {
    cursor: pointer;
}

.max-w-400 {
    max-width: 400px;
}

.max-w-480 {
    max-width: 480px;
}

.min-h-60 {
    min-height: 60px;
}

.max-h-300 {
    max-height: 300px;
    overflow-y: auto;
}

.w-60 {
    width: 60px;
}

.icon-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.color-selector-btn {
    width: 40px;
    height: 40px;
}

.color-indicator {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.icon-lg {
    font-size: 1.2rem;
}

.icon-md {
    font-size: 1.1rem;
}

.text-sm {
    font-size: 0.9rem;
}

.spinner-lg {
    width: 3rem;
    height: 3rem;
}

.btn-muted {
    opacity: 0.6;
}

.dropdown-btn-minimal {
    padding: 0;
}

/* ===========================
   Toast Notifications System
   =========================== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    pointer-events: none;
}

.toast-notification {
    min-width: 300px;
    max-width: 400px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-xl);
    margin-bottom: 1rem;
    pointer-events: auto;
    animation: slideIn 0.3s ease forwards;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    border-left: 4px solid;
}

.toast-notification.hiding {
    animation: slideOut 0.3s ease forwards;
}

.toast-notification.success {
    border-left-color: var(--success-color);
}

.toast-notification.error {
    border-left-color: var(--danger-color);
}

.toast-notification.warning {
    border-left-color: var(--warning-color);
}

.toast-notification.info {
    border-left-color: var(--info-color);
}

.toast-notification-icon {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.toast-notification.success .toast-notification-icon {
    color: var(--success-color);
}

.toast-notification.error .toast-notification-icon {
    color: var(--danger-color);
}

.toast-notification.warning .toast-notification-icon {
    color: var(--warning-color);
}

.toast-notification.info .toast-notification-icon {
    color: var(--info-color);
}

.toast-notification-content {
    flex: 1;
    padding: 1rem 0.5rem 1rem 0;
}

.toast-notification-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.toast-notification-message {
    font-size: 0.875rem;
    color: var(--gray-700);
    margin: 0;
}

.toast-notification-close {
    padding: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-500);
    font-size: 1.25rem;
    line-height: 1;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
}

.toast-notification-close:hover {
    color: var(--gray-900);
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* ===========================
   Confirmation Modal
   =========================== */
.confirm-modal .modal-content {
    border-top: 4px solid var(--danger-color);
}

.confirm-modal .modal-header {
    background: linear-gradient(135deg, #fff5f5 0%, white 100%);
}

.confirm-modal .modal-title {
    color: var(--danger-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.confirm-modal .modal-title i {
    font-size: 1.5rem;
}

.confirm-modal .modal-body {
    padding: 1.5rem;
    font-size: 1rem;
}

.confirm-modal-message {
    color: var(--gray-800);
    margin-bottom: 0;
}

/* ===========================
   Display Utilities
   =========================== */
.d-show {
    display: block !important;
}

.d-hide {
    display: none !important;
}

.d-flex-show {
    display: flex !important;
}

.d-inline-show {
    display: inline-block !important;
}

.visibility-hidden {
    visibility: hidden !important;
}

.visibility-visible {
    visibility: visible !important;
}

/* ===========================
   Cookie Consent Banner
   =========================== */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    color: white;
    padding: 1rem 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-consent-banner.cookie-consent-hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
    min-width: 280px;
}

.cookie-consent-link {
    color: var(--light-blue-soft);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.cookie-consent-link:hover {
    color: white;
}

.cookie-consent-btn {
    background: white;
    color: var(--primary-dark);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.cookie-consent-btn:hover {
    background: var(--light-blue-soft);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-consent-btn:active {
    transform: translateY(0);
}

@media (max-width: 576px) {
    .cookie-consent-banner {
        padding: 1rem;
    }

    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-consent-text {
        min-width: 100%;
        font-size: 0.875rem;
    }

    .cookie-consent-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}
