:root {
    /* Liquid Digital Luxury / Soft Dashboard Mode */
    --background: #E8EBF2;
    --surface: rgba(255, 255, 255, 0.7);
    --surface-light: rgba(255, 255, 255, 0.4);
    --surface-solid: #ffffff;
    --border: rgba(255, 255, 255, 0.5);
    --text: #2D3748;
    --text-muted: #718096;
    --sidebar-bg: transparent;
    --topbar-bg: transparent;
    --main-gradient: radial-gradient(circle at top left, #E2E6F4, #EDF2F7, #E8EBF2);
    --section-bg: rgba(255, 255, 255, 0.85);
    --input-bg: rgba(255, 255, 255, 0.5);
    --modal-overlay-bg: rgba(45, 55, 72, 0.4);
    --card-hover-bg: rgba(255, 255, 255, 1);
    --card-border-light: rgba(255, 255, 255, 0.8);
    --ai-insight-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
    --insight-item-bg: rgba(255, 255, 255, 0.6);
    --kanban-col-bg: transparent;
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);

    --sidebar-width: 100px;
    /* Reduced for icon-only style on desktop */
    --topbar-height: 80px;
    --primary: #2D3748;
    --primary-dark: #1A202C;
    --accent: #A3E635;
    /* Lime green from Intellecta */
    --accent-dark: #84CC16;
    --accent-purple: #C4B5FD;
    /* Purple from Intellecta */
    --green: #A3E635;
    --yellow: #FBBF24;
    --red: #F87171;
    --border-radius-xl: 32px;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
}

/* Dark Theme - Adjusted to keep the smooth glass aesthetic */
body.dark-mode {
    --background: #111827;
    --surface: rgba(31, 41, 55, 0.7);
    --surface-light: rgba(31, 41, 55, 0.4);
    --surface-solid: #1F2937;
    --border: rgba(255, 255, 255, 0.05);
    --text: #F9FAFB;
    --text-muted: #9CA3AF;
    --sidebar-bg: transparent;
    --topbar-bg: transparent;
    --main-gradient: radial-gradient(circle at top left, #1F2937, #111827);
    --section-bg: rgba(31, 41, 55, 0.85);
    --input-bg: rgba(0, 0, 0, 0.2);
    --card-hover-bg: rgba(55, 65, 81, 1);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.4);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Outfit', sans-serif;
}

body {
    background: var(--main-gradient);
    background-color: var(--background);
    color: var(--text);
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Layout Structure */
.app-container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* Sidebar - Icon Only, Floating Style */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--sidebar-bg);
    border-right: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 100;
    padding: 20px 0;
}

.sidebar-header {
    padding: 20px 0 40px 0;
    display: flex;
    justify-content: center;
}

.logo {
    font-size: 0;
    /* Hide text on desktop for the minimalist look */
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.logo::after {
    content: "GC";
    font-size: 18px;
    font-weight: 800;
}

.sidebar-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    text-decoration: none;
    color: var(--text-muted);
    border-radius: 50%;
    background: var(--surface-light);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
}

.nav-item span {
    display: none;
    /* Hide text on desktop */
}

.nav-item i {
    width: 20px;
    height: 20px;
}

.nav-item:hover {
    background-color: var(--surface-solid);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.nav-item.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(45, 55, 72, 0.3);
}

.sidebar-footer {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: transparent;
    /* Changed to let app-container background show through */
    overflow-y: auto;
}

/* Topbar */
.topbar {
    height: var(--topbar-height);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: none;
    background-color: var(--topbar-bg);
    position: sticky;
    top: 0;
    z-index: 90;
}

.search-container {
    position: relative;
    width: 300px;
}

.search-container i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

.search-container input {
    width: 100%;
    background-color: var(--surface);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 12px 15px 12px 45px;
    color: var(--text);
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.search-container input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 55, 72, 0.1);
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-btn {
    background: var(--surface);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.icon-btn i {
    width: 18px;
    height: 18px;
}

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

.badge {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--surface);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 10px;
}

.user-info {
    display: none;
    /* Hide user name on desktop to match the clean Intellecta look */
}

.user-avatar {
    width: 44px;
    height: 44px;
    background: url('https://i.pravatar.cc/150?img=33') center/cover;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: white;
    box-shadow: var(--shadow-sm);
    border: 2px solid white;
}

/* Content Views */
.content-view {
    padding: 30px;
    animation: fadeIn 0.5s ease;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.view-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.greeting h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.greeting p {
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-accent {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(45, 55, 72, 0.2);
}

.btn-accent:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 55, 72, 0.3);
}

.btn-outline {
    background-color: var(--surface);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background-color: var(--surface-solid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.w-full {
    width: 100%;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    background-color: var(--surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: var(--border-radius-xl);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: var(--surface-solid);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.icon-primary {
    background: rgba(45, 55, 72, 0.08);
    color: var(--primary);
}

.icon-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.icon-green {
    background: rgba(34, 197, 94, 0.12);
    color: #10b981;
}

.icon-yellow {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.icon-purple {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.icon-red {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.stat-icon i {
    width: 24px;
    height: 24px;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 5px;
    font-weight: 500;
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}

/* Main Grid Layout */
.main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.grid-section {
    background-color: var(--surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.link-btn {
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Kanban Board Preview */
.kanban-board-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.kanban-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.col-header {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
}

.kanban-card {
    background-color: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.kanban-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.card-tag {
    font-size: 9px;
    font-weight: 800;
    background-color: var(--card-hover-bg);
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.tag-primary {
    background-color: rgba(0, 102, 255, 0.1);
    color: var(--primary);
}

.kanban-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.kanban-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid var(--card-border-light);
    font-size: 10px;
    color: var(--text-muted);
}

.card-footer span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* AI Insights */
.ai-insights {
    background: var(--ai-insight-bg);
    border-color: rgba(0, 102, 255, 0.2);
}

.insight-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.insight-item {
    display: flex;
    gap: 15px;
    background-color: var(--insight-item-bg);
    padding: 15px;
    border-radius: 16px;
    border: 1px solid var(--card-border-light);
}

.insight-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 102, 255, 0.1);
    color: var(--primary);
}

.icon-warning {
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.icon-info {
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--accent);
}

.insight-content p {
    font-size: 13px;
    line-height: 1.5;
}

.insight-content strong {
    color: var(--text);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: var(--modal-overlay-bg);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.3s;
}

.modal {
    background-color: var(--surface);
    width: 500px;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.modal-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.input-field {
    width: 100%;
    background-color: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 15px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.modal-footer {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

.hidden {
    display: none !important;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Full Kanban Board (Patio) */
.kanban-full-board {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    overflow-x: auto;
    height: calc(100vh - 200px);
}

.kanban-col-full {
    flex-shrink: 0;
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--kanban-col-bg);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--border);
}

.kanban-col-full .col-header {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.kanban-col-full .count {
    background-color: var(--surface-light);
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 11px;
}

.kanban-cards-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
}

/* Vehicle Info Header */
.vehicle-info-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-item label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.info-item span {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

/* Status Dots */
.status-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    background-color: var(--surface-light);
}

.status-dot.red {
    border-color: rgba(239, 68, 68, 0.2);
}

.status-dot.yellow {
    border-color: rgba(245, 158, 11, 0.2);
}

.status-dot.green {
    border-color: rgba(34, 197, 94, 0.2);
}

.status-dot.red.active {
    background-color: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
    border-color: white;
}

.status-dot.yellow.active {
    background-color: #f59e0b;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    border-color: white;
}

.status-dot.green.active {
    background-color: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    border-color: white;
}

/* Tabs */
.tabs-container {
    display: flex;
    gap: 10px;
    background: var(--surface-light);
    padding: 6px;
    border-radius: 100px;
    width: fit-content;
    border: 1px solid var(--border);
}

.tab-btn {
    padding: 10px 24px;
    border-radius: 100px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    background: var(--surface-solid);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* Misc Utilities */
.h-32 {
    height: 128px;
}

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

.gap-6 {
    gap: 24px;
}

/* Photo Upload Grid */
.photo-upload-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.photo-placeholder {
    aspect-ratio: 4/3;
    background-color: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.photo-placeholder:hover {
    border-color: var(--primary);
    background-color: rgba(0, 102, 255, 0.05);
}

.photo-placeholder i {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.photo-placeholder span {
    font-size: 10px;
    color: var(--text-muted);
}

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

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

.flex {
    display: flex;
}

.gap-2 {
    gap: 10px;
}

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

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

/* Data Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.data-table th {
    text-align: left;
    padding: 15px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.data-table td {
    padding: 15px;
    font-size: 14px;
    border-bottom: 1px solid var(--card-border-light);
}

.table-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--surface-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid var(--border);
}

/* Badge Statuses */
.badge-status {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}

.badge-status.success {
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--green);
}

.badge-status.warning {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--yellow);
}

/* Checklist Items */
.checklist-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checklist-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: var(--kanban-col-bg);
    border-radius: 12px;
    border: 1px solid var(--border);
}

transition: border-color 0.2s;
}

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

.checklist-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
}

/* Photo Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.photo-card {
    aspect-ratio: 1;
    background-color: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.photo-card i {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
}

.photo-card span {
    font-size: 11px;
    color: var(--text-muted);
}

.photo-card.upload {
    border: 2px dashed var(--border);
    background-color: transparent;
}

.photo-card.upload:hover {
    border-color: var(--primary);
    background-color: rgba(0, 102, 255, 0.02);
}

/* Customer Profile Detail */
.customer-profile-detail {
    animation: fadeIn 0.4s ease;
}

.profile-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 25px;
    margin-top: 20px;
}

.user-avatar-lg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto;
    border: 4px solid var(--surface-light);
}

.profile-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.info-row label {
    color: var(--text-muted);
}

.btn-back {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    padding: 0;
}

.btn-back:hover {
    text-decoration: underline;
}

.vehicle-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.vehicle-mini-card {
    background-color: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.vehicle-mini-card i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.vehicle-mini-card h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.vehicle-mini-card p {
    font-size: 11px;
    color: var(--text-muted);
}

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

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

/* Financial Chart & Transactions */
.chart-container-mock {
    height: 200px;
    display: flex;
    align-items: flex-end;
    padding: 20px 0;
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    height: 100%;
}

.bar-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.bar {
    width: 24px;
    background-color: var(--primary);
    border-radius: 6px 6px 0 0;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.bar.active {
    opacity: 1;
    box-shadow: 0 0 15px var(--primary);
}

.bar.disabled {
    background-color: var(--border);
    opacity: 0.2;
}

.bar-wrapper span {
    font-size: 10px;
    color: var(--text-muted);
}

.tx-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tx-item {
    background-color: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s;
}

.tx-item:hover {
    transform: translateX(5px);
    border-color: var(--primary);
}

.tx-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tx-icon.icon-green {
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--green);
}

.tx-icon.icon-red {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--red);
}

.tx-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tx-amount {
    font-weight: 700;
    font-size: 14px;
}

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

.icon-red {
    color: var(--red);
}