/* ============================================
   CLINICBASE PWA — Styles
   Mobile-first, modern CSS with variables
   Offline-first Health Management System
   ============================================ */

/* CSS Variables */
:root {
    /* Brand Colors (overridable via settings) */
    --color-primary: #064e3b;
    --color-primaryLight: #10b981;
    --color-secondary: #4d7c0f;
    --color-accent: #84cc16;

    /* Semantic Colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-info: #3b82f6;

    /* Background & Surface */
    --bg-gradient: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #f0fdf4 100%);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);

    /* Apple Grey Tones */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 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);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Layout */
    --header-height: 64px;
    --nav-height: 72px;
    --safe-bottom: env(safe-area-inset-bottom, 0px);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-gradient);
    color: var(--slate-800);
    line-height: 1.5;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
}

/* Mobile Container */
.mobile-container {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--slate-50);
    position: relative;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

@media (min-width: 768px) {
    .mobile-container {
        margin-top: 20px;
        margin-bottom: 20px;
        min-height: calc(100vh - 40px);
        min-height: calc(100dvh - 40px);
        border-radius: var(--radius-2xl);
    }
}

/* Auth Screen */
.auth-screen {
    min-height: 100vh;
    min-height: 100dvh;
    background: linear-gradient(135deg, var(--color-primary) 0%, #022c22 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    width: 100%;
    max-width: 360px;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
    color: white;
    overflow: hidden;
}

.auth-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: white;
}

.auth-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.auth-form {
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.glass-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
}

/* Input Group */
.input-group {
    margin-bottom: var(--spacing-md);
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate-600);
    margin-bottom: var(--spacing-xs);
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s;
    outline: 0;
    color: var(--slate-800);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(6, 78, 59, 0.1);
    transform: scale(1.01);
}

/* Standard Buttons */
.btn {
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    box-shadow: var(--shadow-sm);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--color-primaryLight) 0%, var(--color-primary) 100%);
    color: white;
}

.btn-secondary {
    background: var(--color-secondary);
    color: white;
}

.btn-danger {
    background: var(--color-danger);
    color: white;
}

.btn-block {
    width: 100%;
}

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

/* Form Elements */
.form-group {
    margin-bottom: 1rem;
}

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: white;
    color: var(--slate-800);
    transition: 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.1);
}

/* Toast Notifications */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 380px;
}

.toast {
    padding: 12px 20px;
    border-radius: var(--radius-md);
    color: white;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    transform: translateX(120%);
    animation: slideIn 0.3s forwards;
    backdrop-filter: blur(10px);
}

.toast.success {
    background-color: rgba(16, 185, 129, 0.95);
}

.toast.error {
    background-color: rgba(239, 68, 68, 0.95);
}

.toast.info {
    background-color: rgba(6, 78, 59, 0.95);
}

.toast.warning {
    background-color: rgba(245, 158, 11, 0.95);
}

.toast.fade-out {
    animation: slideOut 0.3s forwards;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    to {
        transform: translateX(120%);
    }
}

/* Status Badges */
.badge {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-patient {
    background: #e0f2fe;
    color: #0284c7;
    border: 1px solid #bae6fd;
}

.badge-general {
    background: #fef3c7;
    color: #d97706;
    border: 1px solid #fde68a;
}

.badge-success {
    background: #d1fae5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.badge-danger {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Chip/Pill Selection */
.radio-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-chip:hover {
    border-color: var(--color-primary);
    background: rgba(6, 78, 59, 0.05);
}

.radio-chip.selected,
.radio-chip[data-selected="true"] {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

/* Header */
header {
    background: white;
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 20;
    position: sticky;
    top: 0;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    margin-bottom: var(--spacing-md);
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 40;
    display: flex;
    justify-content: space-around;
    padding: 12px 8px calc(12px + var(--safe-bottom));
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.nav-btn-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 64px;
    padding: 8px;
    color: var(--slate-400);
    transition: all 0.2s;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-btn-mobile:hover,
.nav-btn-mobile.active {
    color: var(--color-primary);
}

.nav-btn-mobile .nav-icon-wrap {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin-bottom: 4px;
    transition: all 0.2s;
}

.nav-btn-mobile.text-primary .nav-icon-wrap {
    background-color: rgba(6, 78, 59, 0.1);
}

.nav-btn-mobile span {
    font-size: 10px;
    font-weight: 600;
}

/* Modal Container */
#modal-container {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

#modal-container.hidden {
    display: none;
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--slate-100);
}

.section-header h2 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-800);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* Image Upload */
.image-upload {
    position: relative;
}

.image-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    border: 2px dashed var(--slate-300);
    border-radius: var(--radius-lg);
    background: var(--slate-50);
    cursor: pointer;
    transition: all 0.2s;
}

.upload-label:hover {
    border-color: var(--color-primary);
    background: rgba(6, 78, 59, 0.05);
}

.upload-content {
    text-align: center;
    color: var(--slate-500);
}

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

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 12px;
}

.gap-4 {
    gap: 16px;
}

.space-y-3 > * + * {
    margin-top: 12px;
}

.space-y-4 > * + * {
    margin-top: 16px;
}

.space-y-6 > * + * {
    margin-top: 24px;
}

.w-full {
    width: 100%;
}

.text-center {
    text-align: center;
}

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

.text-xs {
    font-size: 0.75rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.rounded-xl {
    border-radius: var(--radius-lg);
}

.rounded-2xl {
    border-radius: var(--radius-xl);
}

.rounded-full {
    border-radius: 9999px;
}

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

.shadow-md {
    box-shadow: var(--shadow-md);
}

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

.bg-primary {
    background-color: var(--color-primary);
}

.text-primary {
    color: var(--color-primary);
}

.text-white {
    color: white;
}

.text-slate-400 {
    color: var(--slate-400);
}

.text-slate-500 {
    color: var(--slate-500);
}

.text-slate-600 {
    color: var(--slate-600);
}

.text-slate-700 {
    color: var(--slate-700);
}

.text-slate-800 {
    color: var(--slate-800);
}

.bg-white {
    background-color: white;
}

.bg-slate-50 {
    background-color: var(--slate-50);
}

.bg-slate-100 {
    background-color: var(--slate-100);
}

.border {
    border: 1px solid var(--slate-200);
}

.border-slate-100 {
    border-color: var(--slate-100);
}

.border-slate-200 {
    border-color: var(--slate-200);
}

.p-2 {
    padding: 8px;
}

.p-3 {
    padding: 12px;
}

.p-4 {
    padding: 16px;
}

.p-5 {
    padding: 20px;
}

.p-6 {
    padding: 24px;
}

.px-3 {
    padding-left: 12px;
    padding-right: 12px;
}

.px-4 {
    padding-left: 16px;
    padding-right: 16px;
}

.py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-3 {
    margin-bottom: 12px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-6 {
    margin-bottom: 24px;
}

.mt-2 {
    margin-top: 8px;
}

.mt-4 {
    margin-top: 16px;
}

.mt-6 {
    margin-top: 24px;
}

.mr-2 {
    margin-right: 8px;
}

.mr-3 {
    margin-right: 12px;
}

/* Grid */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:col-span-2 {
        grid-column: span 2 / span 2;
    }
}

/* Animation */
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.transition {
    transition: all 0.2s;
}

.transition-all {
    transition: all 0.3s;
}

/* Print Styles */
@media print {
    body {
        background: white !important;
        overflow: auto !important;
    }

    .mobile-container {
        max-width: 100% !important;
        box-shadow: none !important;
        margin: 0 !important;
        background: white !important;
    }

    header,
    nav,
    #login-screen,
    .no-print,
    #mobile-bottom-nav,
    .bottom-nav {
        display: none !important;
    }

    #content-area {
        padding: 0 !important;
        overflow: visible !important;
    }

    .print-only {
        display: block !important;
    }

    .glass-card {
        background: white !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: none !important;
        margin-bottom: 20px;
    }
}

.print-only {
    display: none;
}

/* Flex utilities */
.flex-1 {
    flex: 1 1 0%;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-auto {
    flex: 1 1 auto;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

.overflow-y-auto {
    overflow-y: auto;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

/* Position */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.inset-0 {
    inset: 0;
}

.top-0 {
    top: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-40 {
    z-index: 40;
}

.z-50 {
    z-index: 50;
}

/* Transform */
.translate-y-full {
    transform: translateY(100%);
}

/* Opacity */
.opacity-0 {
    opacity: 0;
}

/* Row layout for forms */
.row {
    display: flex;
    gap: var(--spacing-md);
}

.row > * {
    flex: 1;
}

/* Admin only elements */
.admin-only {
    display: none;
}

/* Hover states */
.hover\:bg-slate-50:hover {
    background-color: var(--slate-50);
}

.hover\:bg-slate-100:hover {
    background-color: var(--slate-100);
}

.hover\:bg-slate-200:hover {
    background-color: var(--slate-200);
}

.hover\:text-primary:hover {
    color: var(--color-primary);
}

.hover\:text-red-500:hover {
    color: #ef4444;
}

/* Color utilities */
.bg-primary\/10 {
    background-color: rgba(6, 78, 59, 0.1);
}

.bg-secondary\/10 {
    background-color: rgba(77, 124, 15, 0.1);
}

.bg-accent\/20 {
    background-color: rgba(132, 204, 22, 0.2);
}

.bg-red-50 {
    background-color: #fef2f2;
}

.bg-green-50 {
    background-color: #f0fdf4;
}

.bg-blue-50 {
    background-color: #eff6ff;
}

.bg-orange-50 {
    background-color: #fff7ed;
}

.bg-purple-50 {
    background-color: #faf5ff;
}

.text-red-500 {
    color: #ef4444;
}

.text-green-500 {
    color: #10b981;
}

.text-blue-500 {
    color: #3b82f6;
}

.text-secondary {
    color: var(--color-secondary);
}

.text-accent {
    color: var(--color-accent);
}

.border-red-200 {
    border-color: #fecaca;
}

.border-green-200 {
    border-color: #bbf7d0;
}

.border-primary {
    border-color: var(--color-primary);
}

/* Focus states */
.focus\:border-primary:focus {
    border-color: var(--color-primary);
}

.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px rgba(6, 78, 59, 0.2);
}

.outline-none {
    outline: none;
}

/* Cursor */
.cursor-pointer {
    cursor: pointer;
}

.cursor-not-allowed {
    cursor: not-allowed;
}

/* Leading */
.leading-tight {
    line-height: 1.25;
}

/* Tracking */
.tracking-wider {
    letter-spacing: 0.05em;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

/* Text transform */
.uppercase {
    text-transform: uppercase;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Max width */
.max-w-sm {
    max-width: 24rem;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

/* Min height */
.min-h-full {
    min-height: 100%;
}

/* Height */
.h-full {
    height: 100%;
}

.h-10 {
    height: 40px;
}

.h-12 {
    height: 48px;
}

/* Width */
.w-10 {
    width: 40px;
}

.w-12 {
    width: 48px;
}

.w-16 {
    width: 64px;
}

.w-24 {
    width: 96px;
}

/* Border width */
.border-b {
    border-bottom-width: 1px;
}

.border-t {
    border-top-width: 1px;
}

.border-l-4 {
    border-left-width: 4px;
}

.border-l-primary {
    border-left-color: var(--color-primary);
}

.border-l-secondary {
    border-left-color: var(--color-secondary);
}

.border-l-accent {
    border-left-color: var(--color-accent);
}

/* Last child */
.last\:border-0:last-child {
    border-width: 0;
}

/* PWA Install Banner */
#pwa-install-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 420px;
    margin: 16px auto;
    background: white;
    border-radius: var(--radius-xl);
    padding: 16px;
    box-shadow: var(--shadow-xl);
    z-index: 150;
    transform: translateY(200%);
    transition: transform 0.5s;
    border: 1px solid var(--slate-100);
}

#pwa-install-banner:not(.translate-y-full) {
    transform: translateY(0);
}

/* Responsive utilities */
@media (min-width: 1024px) {
    .lg\:flex {
        display: flex;
    }
    
    .lg\:hidden {
        display: none;
    }
    
    .lg\:flex-row {
        flex-direction: row;
    }
    
    .lg\:w-80 {
        width: 320px;
    }
    
    .lg\:w-72 {
        width: 288px;
    }
    
    .lg\:col-span-1 {
        grid-column: span 1;
    }
    
    .lg\:col-span-2 {
        grid-column: span 2;
    }
    
    .lg\:overflow-hidden {
        overflow: hidden;
    }
    
    .lg\:overflow-y-auto {
        overflow-y: auto;
    }
    
    .lg\:h-full {
        height: 100%;
    }
    
    .lg\:px-4 {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .lg\:mx-4 {
        margin-left: 16px;
        margin-right: 16px;
    }
}

/* Mobile specific */
@media (max-width: 767px) {
    .md\:hidden {
        display: none;
    }
}
