

        :root {
            --mobil-blue: #0045A1;
            --mobil-blue-dark: #002B66;
            --mobil-red: #FE000C;
            --mobil-red-dark: #D6000A;
            --bg-light: #F8FAFC;
        }

        body {
            font-family: 'EMprint-Regular';
            background-color: var(--bg-light);
            min-height: 100vh;
        }

        header {
            position: static !important;
        }

        @font-face {
            font-family: 'EMprint-Regular';
            font-style: normal;
            font-weight: normal;
            src: local('EMprint-Regular'), url('/fonts/EMprint-Regular.ttf') format('ttf');
        }

        @font-face {
            font-family: 'EMprint-Semibold';
            font-style: normal;
            font-weight: normal;
            src: local('EMprint-Semibold'), url('/fonts/EMprint-Semibold.ttf') format('ttf');
        }

        @font-face {
            font-family: 'EMprint-Bold';
            font-style: normal;
            font-weight: normal;
            src: local('EMprint-Bold'), url('/fonts/EMprint-Bold.ttf') format('ttf');
        }
        
        .title-consult {
            font-family: 'EMprint-Bold';
        }

        #user-name {
            font-family: 'EMprint-Bold';
        }

        .search-screen {
            min-height: 100vh;
            background: linear-gradient(135deg, #000C51 0%, #0045A1 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 20px;
        }

        .search-card {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-radius: 28px;
            padding: 40px 30px;
            max-width: 520px;
            width: 100%;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
        }

        .brand-badge-icon {
            width: 64px;
            height: 64px;
            background: rgba(0, 69, 161, 0.08);
            color: var(--mobil-blue);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
            font-size: 1.8rem;
        }

        .custom-input-group .form-control {
            height: 54px;
            border-radius: 14px 0 0 14px;
            border: 2px solid #E2E8F0;
            padding-left: 18px;
            font-weight: 500;
        }

        .custom-input-group .form-control:focus {
            border-color: var(--mobil-blue);
            box-shadow: none;
        }

        .custom-input-group .input-group-text {
            border-radius: 0 14px 14px 0;
            border: 2px solid #E2E8F0;
            background: #ffffff;
            color: #94A3B8;
        }

        .btn-consultar {
            height: 52px;
            background: var(--mobil-red);
            color: #ffffff;
            border-radius: 14px;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(254, 0, 12, 0.3);
        }

        .btn-consultar:hover {
            background: var(--mobil-red-dark);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(254, 0, 12, 0.4);
        }

        .btn-regresar-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.2s ease;
        }

        .btn-regresar-link:hover {
            color: #ffffff;
        }

        .dashboard-header {
            background: linear-gradient(135deg, var(--mobil-blue-dark) 0%, var(--mobil-blue) 100%);
            color: white;
            padding: 40px 0 80px 0;
            border-radius: 0 0 32px 32px;
        }

        .stat-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 24px;
            border: 1px solid #E2E8F0;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
        }

        .stat-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }

        .custom-table-container {
            background: #ffffff;
            border-radius: 20px;
            border: 1px solid #E2E8F0;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        }

        .table thead {
            background: #F1F5F9;
        }

        .table thead th {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #64748B;
            font-weight: 700;
            padding: 16px 20px;
            border: none;
        }

        .table tbody td {
            padding: 18px 20px;
            vertical-align: middle;
            color: #334155;
            font-weight: 500;
            border-bottom: 1px solid #F1F5F9;
        }

        .empty-state-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 50px 30px;
            border: 1px solid #E2E8F0;
        }

        .text-red {
            color: var(--mobil-red);
        }