/* ========================================
   OUTINGS PLACES - ORIGINAL DESIGN
   Simple, clean, and functional
   ======================================== */

/* ===== ROOT VARIABLES ===== */
:root {
    /* Primary Colors - Blue */
    --primary-color: #1e40af;
    --primary-color-light: #3b82f6;
    --primary-color-dark: #1e3a8a;
    
    /* Secondary Colors - Purple */
    --secondary-color: #7c3aed;
    --secondary-color-light: #8b5cf6;
    --secondary-color-dark: #6d28d9;
    
    /* Status Colors */
    --success-color: #059669;
    --success-color-light: #10b981;
    --success-color-dark: #047857;
    --danger-color: #dc2626;
    --danger-color-light: #ef4444;
    --danger-color-dark: #b91c1c;
    --warning-color: #d97706;
    --warning-color-light: #f59e0b;
    --warning-color-dark: #b45309;
    --info-color: #0891b2;
    --info-color-light: #06b6d4;
    --info-color-dark: #0e7490;
    
    /* Neutral Colors */
    --light-color: #f8fafc;
    --dark-color: #0f172a;
    --primary-black: #0f172a;
    --primary-gray: #475569;
    --primary-gray-light: #64748b;
    --primary-gray-dark: #334155;
    --primary-white: #ffffff;
    
    /* Background Colors - Clean & Simple */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --bg-muted: #f1f5f9;
    
    /* Text Colors - High Contrast */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    
    /* Border Colors */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --border-dark: #cbd5e1;
    
    /* Shadows - Subtle */
    --shadow-sm: 0 1px 2px 0 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);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Spacing - Reduced */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
}

/* ===== BASE STYLES ===== */
* {
    box-sizing: border-box;
}

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

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    padding-top: 80px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

/* ===== UNIFIED LAYOUT SYSTEM ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* ===== CLEAN CARDS ===== */
.card-neumorphism {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    transition: all 0.2s ease;
    position: relative;
    margin-bottom: 1.5rem;
}

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

.card-neumorphism::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Unified Section Spacing */
.section-spacing {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.section-spacing-sm {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.section-spacing-lg {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Unified Card Spacing */
.card-spacing {
    margin-bottom: 1.5rem;
}

.card-spacing-sm {
    margin-bottom: 1rem;
}

.card-spacing-lg {
    margin-bottom: 2rem;
}

/* Unified Row Spacing */
.row-spacing {
    margin-bottom: 1.5rem;
}

.row-spacing-sm {
    margin-bottom: 1rem;
}

.row-spacing-lg {
    margin-bottom: 2rem;
}

/* Unified Form Spacing */
.form-spacing {
    margin-bottom: 1.5rem;
}

.form-spacing-sm {
    margin-bottom: 1rem;
}

.form-spacing-lg {
    margin-bottom: 2rem;
}

/* ===== UNIFIED PAGE LAYOUT ===== */
/* Reduce spacing in all pages */
.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.mb-5 {
    margin-bottom: 2rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.p-5 {
    padding: 1.5rem !important;
}

.p-4 {
    padding: 1.25rem !important;
}

/* Card spacing adjustments */
.card-body {
    padding: 1.25rem !important;
}

.card-body.p-5 {
    padding: 1.5rem !important;
}

/* Row spacing adjustments */
.row {
    margin-bottom: 1rem;
}

.row:last-child {
    margin-bottom: 0;
}

/* Section headers */
.display-4 {
    font-size: 2.5rem !important;
    margin-bottom: 1rem !important;
}

.display-5 {
    font-size: 2rem !important;
    margin-bottom: 0.75rem !important;
}

.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0.75rem !important;
}

.lead {
    font-size: 1.1rem !important;
    margin-bottom: 1.5rem !important;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

/* Selection styles */
::selection {
    background: var(--primary-color);
    color: var(--primary-white);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--primary-white);
}

/* ===== NAVIGATION ===== */
.navbar-neumorphism {
    background: var(--bg-card);
    box-shadow: var(--shadow-lg);
    padding: var(--space-4) 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand-neumorphism {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    transition: all 0.3s ease;
}

.navbar-brand-neumorphism:hover {
    color: var(--secondary-color);
    transform: scale(1.05);
    text-decoration: none;
}

.navbar-nav .nav-link-neumorphism {
    color: var(--text-secondary);
    font-weight: 500;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link-neumorphism::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link-neumorphism:hover::before {
    left: 0;
}

.navbar-nav .nav-link-neumorphism:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
}

.navbar-nav .nav-link-neumorphism.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    color: var(--primary-white);
    box-shadow: var(--shadow-md);
}

/* ===== CARDS ===== */
.card {
    background: var(--bg-card);
    border: none;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-8);
    margin: var(--space-5) 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.card-body {
    padding: 0;
    position: relative;
    z-index: 1;
}

/* ===== WINDOWS ===== */
.window {
    background: var(--bg-card);
    border: none;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    padding: var(--space-10);
    margin: var(--space-8) auto;
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.window:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.window-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-5);
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.window-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-full);
}

.window-header h1,
.window-header h2,
.window-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.window-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    display: inline-block;
    margin-left: var(--space-1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.window-header span:nth-child(1) {
    background: linear-gradient(135deg, #ff5f57, #ff3b30);
}

.window-header span:nth-child(2) {
    background: linear-gradient(135deg, #ffbd2e, #ff9500);
}

.window-header span:nth-child(3) {
    background: linear-gradient(135deg, #28ca42, #20c933);
}

.place-content {
    padding: 0;
    position: relative;
    z-index: 1;
}

/* ===== BUTTONS ===== */
.btn-neumorphism {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    user-select: none;
}

.btn-neumorphism::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.3s ease;
}

.btn-neumorphism:hover::before {
    left: 100%;
}

.btn-neumorphism:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
    border-color: var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
}

.btn-neumorphism:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-neumorphism:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3), var(--shadow-md);
}

.btn-neumorphism.primary {
    background: var(--primary-color);
    color: var(--primary-white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.btn-neumorphism.primary:hover {
    background: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
    box-shadow: var(--shadow-md);
    color: var(--primary-white);
}

.btn-neumorphism.secondary {
    background: var(--secondary-color);
    color: var(--primary-white);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-sm);
}

.btn-neumorphism.success {
    background: linear-gradient(135deg, var(--success-color), var(--success-color-light));
    color: var(--primary-white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-neumorphism.danger {
    background: linear-gradient(135deg, var(--danger-color), var(--danger-color-light));
    color: var(--primary-white);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn-neumorphism.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: 0.875rem;
    border-radius: var(--radius-lg);
}

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

/* ===== STATISTICS CARDS ===== */
.stats-card {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 200px;
    margin: 0 auto 20px;
    width: 100%;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px 16px 0 0;
}

.stats-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    display: block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-label {
    color: var(--primary-gray);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-card.blue .stats-number {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-card.pink .stats-number {
    background: linear-gradient(135deg, #ec4899, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-card.green .stats-number {
    background: linear-gradient(135deg, var(--success-color), #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SECTIONS ===== */
.section-background {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background: #f8fafc;
}

.section-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* ===== TABLES ===== */
.table-neumorphism {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: none;
}

.table-neumorphism th {
    background: #f8fafc;
    color: var(--primary-gray-dark);
    font-weight: 600;
    padding: 20px;
    border: none;
    text-align: right;
}

.table-neumorphism td {
    padding: 20px;
    border-bottom: 1px solid #f3f4f6;
    color: var(--primary-gray);
    border: none;
}

.table-neumorphism tr:hover {
    background: #f8fafc;
}

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

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-gray-dark);
    font-size: 0.875rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    color: var(--primary-black);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: var(--primary-gray-light);
}

/* ===== MODALS ===== */
.modal-neumorphism {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: none;
}

.modal-header-neumorphism {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 25px;
    border-radius: 20px 20px 0 0;
    border: none;
}

.modal-body-neumorphism {
    padding: 25px;
}

.modal-footer-neumorphism {
    background: #f8fafc;
    padding: 25px;
    border-radius: 0 0 20px 20px;
    border: none;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-none { display: none; }

.justify-content-center { justify-content: center; }
.justify-content-start { justify-content: flex-start; }
.justify-content-end { justify-content: flex-end; }
.justify-content-between { justify-content: space-between; }
.justify-content-around { justify-content: space-around; }

.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }
.align-items-stretch { align-items: stretch; }

.gap-1 { gap: 4px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded { border-radius: 8px; }
.rounded-lg { border-radius: 12px; }
.rounded-xl { border-radius: 16px; }
.rounded-2xl { border-radius: 20px; }
.rounded-full { border-radius: 50%; }

.shadow-sm { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
.shadow { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25); }

.opacity-0 { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

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

.select-none { user-select: none; }
.select-text { user-select: text; }
.select-all { user-select: all; }

.mb-widget { margin-bottom: 30px; }
.mb-section { margin-bottom: 40px; }
.mb-element { margin-bottom: 20px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease-out;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .container-fluid {
        padding: 0 15px;
    }
    
    .card {
        margin: 15px 0;
        padding: 20px;
    }
    
    .window {
        margin: 20px auto;
        padding: 25px;
    }
    
    .btn-neumorphism {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
    
    .stats-card {
        margin: 0 auto 15px;
        padding: 20px;
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .section-background {
        padding: 40px 0;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .btn-neumorphism {
        display: inline-flex !important;
        box-shadow: none !important;
        border: 1px solid #d1d5db !important;
    }
}

/* ===== EXTENSIONS: ADD MISSING VARIABLES AND COMPONENTS FOR UNIFIED DESIGN ===== */

/* Additional variables used across templates */
:root {
    /* Color aliases and extended palette */
    --primary-blue: var(--primary-color);
    --primary-pink: #ec4899;
    --primary-purple: #8b5cf6;

    /* Gray scale used by templates */
    --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;

    /* Convenience aliases used in views */
    --success: var(--success-color);
    --warning: var(--warning-color);

    /* Pattern backgrounds referenced inline */
    --pattern-primary: #f0f9ff;
    --pattern-secondary: #fff7ed;
    --pattern-grid: 
        linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px),
        linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
}

/* Cards grid helper used on home */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

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

@media (max-width: 576px) {
    .cards { grid-template-columns: 1fr; }
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.6rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-white);
    background: var(--primary-gray);
    box-shadow: var(--shadow-sm);
}

.badge.primary { background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light)); }
.badge.success { background: linear-gradient(135deg, var(--success-color), var(--success-color-light)); }
.badge.warning { background: linear-gradient(135deg, var(--warning-color), var(--warning-color-light)); }

/* Neumorphism-style badge used widely */
.badge-neumorphism {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

/* Form controls (neumorphism variant referenced in views) */
.form-control-neumorphism {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.form-control-neumorphism:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1), var(--shadow-sm);
    outline: none;
}

.form-check-input { cursor: pointer; }
.form-check-label { cursor: pointer; }

/* Optional: navbar scrolled state used by JS */
.navbar-neumorphism.scrolled {
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 0.9);
}

/* Simple style for window controls dots container */
.window-controls { display: flex; gap: 6px; align-items: center; }

