/* 🎨 Connect - Ultra Modern Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Primary Colors */
    --primary: #5B4FFF;
    --primary-dark: #4A3FE5;
    --primary-light: #7B6FFF;
    --secondary: #FF6B6B;
    --accent: #4ECDC4;
    
    /* Status Colors */
    --success: #06D6A0;
    --warning: #FFD166;
    --error: #FF6B6B;
    --info: #4ECDC4;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Text Colors with Proper Contrast */
    --text-primary: #111827;
    --text-secondary: #374151;
    --text-muted: #6B7280;
    --text-inverse: #FFFFFF;
    
    /* Background Gradients - More Subtle for Better Text Readability */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-warm: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-cool: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    
    /* Updated Hero Background - Subtle and Text-Friendly */
    --gradient-mesh: linear-gradient(135deg, 
        rgba(91, 79, 255, 0.08) 0%, 
        rgba(255, 107, 107, 0.06) 25%, 
        rgba(78, 205, 196, 0.08) 50%, 
        rgba(255, 209, 102, 0.06) 75%, 
        rgba(91, 79, 255, 0.08) 100%
    ),
    radial-gradient(circle at 20% 80%, rgba(91, 79, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 107, 107, 0.08) 0%, transparent 50%);
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --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);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 20px rgba(91, 79, 255, 0.3);
    
    /* Text Shadow for Better Contrast */
    --text-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --text-shadow-md: 0 2px 4px rgba(0, 0, 0, 0.15);
    --text-shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.2);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
}

/* Dark theme tokens */
:root[data-theme='dark'] {
    --white: #0f1216;
    --text-primary: #e5e7eb;
    --text-secondary: #cbd5e1;
    --text-muted: #9aa4b2;
    --gray-50: #111418;
    --gray-100: #141922;
    --gray-200: #1f2937;
    --gray-300: #2b3647;
    --gray-400: #3b475a;
    --gray-500: #4f5b6e;
    --gray-600: #647187;
    --gray-700: #7c8aa3;
    --gray-800: #96a2b5;
    --gray-900: #0b0e12;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.6), 0 1px 2px rgba(0,0,0,0.5);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.5), 0 2px 4px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.5), 0 6px 8px rgba(0,0,0,0.4);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: var(--line-height-normal);
    color: var(--text-primary);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Force Bootstrap surfaces to follow theme */
:root[data-theme='dark'] body,
:root[data-theme='dark'] .card,
:root[data-theme='dark'] .dropdown-menu,
:root[data-theme='dark'] .modal-content,
:root[data-theme='dark'] .offcanvas,
:root[data-theme='dark'] .list-group-item {
    background-color: var(--gray-100) !important;
    color: var(--text-primary) !important;
}

:root[data-theme='dark'] .card-header,
:root[data-theme='dark'] .card-footer,
:root[data-theme='dark'] .navbar,
:root[data-theme='dark'] .dropdown-menu,
:root[data-theme='dark'] .modal-header,
:root[data-theme='dark'] .modal-footer {
    background-color: var(--gray-50) !important;
}

:root[data-theme='dark'] .form-control,
:root[data-theme='dark'] .form-select {
    background-color: var(--gray-50) !important;
    color: var(--text-primary) !important;
    border-color: var(--gray-300) !important;
}
/* Typography with Better Contrast */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: var(--line-height-tight);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.display-1 { font-size: 4rem; font-weight: 900; }
.display-2 { font-size: 3.5rem; font-weight: 800; }
.display-3 { font-size: 3rem; font-weight: 800; }
.display-4 { font-size: 2.5rem; font-weight: 700; }

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Text Classes for Better Visibility */
.text-hero {
    color: var(--text-primary) !important;
    text-shadow: var(--text-shadow-sm);
    font-weight: 700;
}

.text-hero-lead {
    color: var(--text-secondary) !important;
    text-shadow: var(--text-shadow-sm);
    font-weight: 500;
}

.text-hero-muted {
    color: var(--text-muted) !important;
    text-shadow: var(--text-shadow-sm);
    font-weight: 500;
}
/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
    padding: var(--space-md) 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

:root[data-theme='dark'] .navbar {
    background: rgba(20, 25, 34, 0.85) !important;
    border-bottom-color: var(--gray-200);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary) !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    color: var(--accent);
}

.navbar-nav .nav-link {
    font-weight: 600 !important;
    color: var(--gray-600) !important;
    padding: var(--space-sm) var(--space-md) !important;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    margin: 0 var(--space-xs);
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
    background-color: var(--gray-50);
    transform: translateY(-1px);
}

.navbar-nav .nav-link i {
    font-size: 1.1rem;
}

/* Dropdown Menu Z-index Fix */
.navbar .dropdown-menu {
    z-index: 9999 !important;
    position: absolute !important;
}

/* Hero Section with Better Text Visibility */
.hero-section {
    background: var(--gradient-mesh);
    background-color: var(--gray-50);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

:root[data-theme='dark'] .hero-section {
    background-color: var(--gray-50);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.3;
}

/* Footer Improvements */
footer {
    background-color: var(--gray-900) !important;
    color: var(--text-inverse) !important;
}

footer h5, footer h6 {
    color: var(--text-inverse) !important;
    font-weight: 600;
}

footer a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

footer a:hover {
    color: var(--text-inverse) !important;
    transform: translateX(2px);
}

footer .text-secondary {
    color: rgba(255, 255, 255, 0.7) !important;
}
/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.bento-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bento-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.bento-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.bento-box:hover::before {
    transform: scaleX(1);
}

.bento-box.large {
    grid-column: span 3;
}

.bento-box.medium {
    grid-column: span 2;
}

.bento-box.tall {
    grid-row: span 2;
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-box.large,
    .bento-box.medium {
        grid-column: span 1;
    }
}

/* Cards */
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
}

:root[data-theme='dark'] .card {
    border-color: var(--gray-300);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.card-body {
    padding: var(--space-xl);
}

.card-header {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: var(--space-lg) var(--space-xl);
    font-weight: 600;
}

.card-footer {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    padding: var(--space-lg) var(--space-xl);
}

/* Activity Cards */
.activity-card {
    position: relative;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Ensure card footer and buttons are always visible */
.activity-card .card-footer {
    opacity: 1 !important;
    visibility: visible !important;
}

.activity-card .card-footer .btn {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Buttons */
.btn {
    font-weight: 600;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    border: none;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(91, 79, 255, 0.2);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

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

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1rem;
    border-radius: var(--radius-xl);
}

.btn-sm {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.75rem;
    border-radius: var(--radius-md);
}

/* Forms */
.form-control, .form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    font-size: 1rem;
    transition: all 0.2s ease;
    background: var(--white);
}

/* Skeleton loading */
.skeleton {
    position: relative;
    overflow: hidden;
    background-color: var(--gray-100) !important;
}

.skeleton::after {
    content: '';
    position: absolute;
    top: 0; left: -150px; height: 100%; width: 150px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(0); }
    100% { transform: translateX(300%); }
}

.skeleton-text { height: 0.9rem; border-radius: 6px; }
.skeleton-text.lg { height: 1.2rem; }
.skeleton-avatar { border-radius: 50%; background: var(--gray-100); }

/* Active nav link */
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background-color: var(--gray-50);
}

.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(91, 79, 255, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.form-text {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Badges */
.badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge.bg-primary {
    background: var(--gradient-primary) !important;
}

.badge.bg-secondary {
    background: var(--gradient-secondary) !important;
}

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

/* Alerts */
.alert {
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.alert::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.alert-success {
    background: rgba(6, 214, 160, 0.1);
    color: var(--success);
}

.alert-success::before {
    background: var(--success);
}

.alert-danger {
    background: rgba(255, 107, 107, 0.1);
    color: var(--error);
}

.alert-danger::before {
    background: var(--error);
}

.alert-info {
    background: rgba(78, 205, 196, 0.1);
    color: var(--info);
}

.alert-info::before {
    background: var(--info);
}
/* Utility Classes */
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-success { color: var(--success) !important; }
.text-danger { color: var(--error) !important; }
.text-warning { color: var(--warning) !important; }
.text-info { color: var(--info) !important; }
.text-muted { color: var(--gray-500) !important; }

.bg-primary { background-color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-success { background-color: var(--success) !important; }
.bg-danger { background-color: var(--error) !important; }
.bg-warning { background-color: var(--warning) !important; }
.bg-info { background-color: var(--info) !important; }
.bg-light { background-color: var(--gray-50) !important; }

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

.rounded { border-radius: var(--radius-md) !important; }
.rounded-lg { border-radius: var(--radius-lg) !important; }
.rounded-xl { border-radius: var(--radius-xl) !important; }
.rounded-full { border-radius: var(--radius-full) !important; }

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .display-1 { font-size: 3rem; }
    .display-2 { font-size: 2.5rem; }
    .display-3 { font-size: 2rem; }
    
    .hero-section {
        padding: var(--space-2xl) 0;
    }
    
    .btn-lg {
        padding: var(--space-md) var(--space-lg);
        font-size: 0.875rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Loading Animation */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Floating Background Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(91, 79, 255, 0.1), rgba(78, 205, 196, 0.1));
    animation: float-shape 20s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 7s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 14s;
}

@keyframes float-shape {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.3;
    }
    75% { 
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.6;
    }
}
/* Mobile-specific improvements */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 80px; /* Space for bottom nav */
    }
    
    .notification-dropdown {
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: auto !important;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        margin: 0 -15px;
        padding: 1rem 15px;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-item {
        margin: 0.25rem 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 8px;
    }
    
    .nav-link:hover {
        background-color: rgba(13, 110, 253, 0.1);
    }
    
    .dropdown-menu {
        width: 100%;
        margin-top: 0.5rem;
        border-radius: 12px;
    }
    
    .dropdown-item {
        padding: 0.75rem 1rem;
    }
    
    /* Bottom navigation styling */
    .fixed-bottom .nav-link {
        color: #6c757d !important;
        transition: all 0.2s ease;
    }
    
    .fixed-bottom .nav-link:hover,
    .fixed-bottom .nav-link.active {
        color: #0d6efd !important;
        transform: translateY(-2px);
    }
    
    .fixed-bottom small {
        font-size: 0.7rem;
        font-weight: 500;
    }
}

/* Touch-friendly interactive elements */
.btn, .nav-link, .dropdown-item {
    min-height: 44px;
    display: flex;
    align-items: center;
}

/* Improve tap targets on mobile */
@media (max-width: 767.98px) {
    .btn-sm {
        min-height: 38px;
        padding: 0.5rem 1rem;
    }
    
    .form-control, .form-select {
        min-height: 44px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .card {
        margin-bottom: 1rem;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Hide desktop notifications on mobile */
@media (max-width: 991.98px) {
    .d-lg-none .notification-dropdown {
        display: none !important;
    }
}
