/**
 * Portal do cliente
 * Estilos Principais - Design Elegante e Corporativo
 */

:root {
    /* Cores principais - inspiradas no azul institucional */
    --primary-color: #f5682d;
    --primary-light: #f7834f;
    --primary-dark: #c44f1e;
    --secondary-color: #c9a227;
    --secondary-light: #d4b84a;

    /* Cores neutras */
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #1a202c;
    --text-muted: #64748b;
    --border-color: #e2e8f0;

    /* Cores de status */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;

    /* Sombras */
    --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);

    /* Transições */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-light);
}

/* ===========================================
   LOGIN PAGE
   =========================================== */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 20%, #f5682d 100%);
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 440px;
}

.login-card {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.login-header {
    background: var(--bg-white);
    padding: 40px 40px 20px;
    text-align: center;
}

.login-logo {
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-logo-img {
    max-width: 200px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.login-logo i {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--secondary-color);
}

.login-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.login-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.login-body {
    padding: 20px 40px 40px;
}

/* ===========================================
   SIDEBAR
   =========================================== */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #000000 20%, #f5682d 100%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-normal);
}

.sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
}

.sidebar-brand-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-brand-icon i {
    font-size: 24px;
    color: var(--secondary-color);
}

.sidebar-brand-text {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

.sidebar-brand-text small {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.7;
}

.sidebar-logo {
    max-width: 180px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.sidebar-nav {
    padding: 20px 0;
    flex: 1;
    overflow-y: auto;
}

.nav-section-title {
    padding: 10px 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}

.nav-item {
    margin: 2px 12px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.nav-link:hover {
    background: rgba(245, 104, 45, 0.3);
    color: white;
}

.nav-link.active {
    background: rgba(245, 104, 45, 0.4);
    color: white;
}

.nav-link i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.user-details {
    flex: 1;
}

.user-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.user-role {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* ===========================================
   MAIN CONTENT
   =========================================== */
.main-content {
    margin-left: 280px;
    min-height: 100vh;
    transition: margin var(--transition-normal);
}

/* Top Header */
.top-header {
    background: linear-gradient(135deg, #000000 20%, #f5682d 100%);
    padding: 16px 30px;
    border-bottom: 1px solid #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #ffffff;
}

.header-actions a,
.header-actions button,
.header-actions i {
    color: #ffffff !important;
}

/* Content Area */
.content-area {
    padding: 30px;
}

/* ===========================================
   CARDS
   =========================================== */
.card {
    background: var(--bg-white);
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-fast);
}

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

.card-header {
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 24px;
    font-weight: 600;
}

.card-body {
    padding: 24px;
}

/* Stats Cards */
.stats-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all var(--transition-fast);
}

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

.stats-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stats-icon.primary {
    background: rgba(30, 58, 95, 0.1);
    color: var(--primary-color);
}

.stats-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

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

.stats-icon.info {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info-color);
}

.stats-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.stats-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ===========================================
   TABLES
   =========================================== */
.table-container {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.table {
    margin-bottom: 0;
}

.table thead th {
    background: var(--bg-light);
    border-bottom: 2px solid var(--border-color);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 20px;
}

.table tbody td {
    padding: 16px 20px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
}

.table tbody tr:hover {
    background: var(--bg-light);
}

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

.table tbody td a {
    color: #f5682d;
}

.table tbody td a:hover {
    color: #c44f1e;
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn {
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 8px;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #000000;
    border-color: #000000;
}

.btn-primary:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active {
    background: #f5682d !important;
    border-color: #f5682d !important;
    box-shadow: 0 0 0 0.25rem rgba(245, 104, 45, 0.5) !important;
}

.btn-secondary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
}

.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:active:focus,
.btn-secondary.active {
    background: #f5682d !important;
    border-color: #f5682d !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.25rem rgba(245, 104, 45, 0.5) !important;
}

.btn-outline-primary {
    border-color: #000000;
    color: #000000;
}

.btn-outline-primary:hover {
    background: #000000;
    border-color: #000000;
}

.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn-outline-primary:active:focus,
.btn-outline-primary.active {
    background: #f5682d !important;
    border-color: #f5682d !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.25rem rgba(245, 104, 45, 0.5) !important;
}

.btn-outline-info {
    border-color: #0f172a;
    color: #0f172a;
}

.btn-outline-info:hover {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
}

.btn-outline-info:active,
.btn-outline-info:focus,
.btn-outline-info:active:focus,
.btn-outline-info.active {
    background: #0f172a !important;
    border-color: #0f172a !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.25rem rgba(15, 23, 42, 0.5) !important;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
}

.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* ===========================================
   FORMS
   =========================================== */
.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control, .form-select {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(245, 104, 45, 0.2);
}

.form-check-input:checked {
    background-color: #f5682d;
    border-color: #f5682d;
}

.form-check-input:focus {
    border-color: #f5682d;
    box-shadow: 0 0 0 3px rgba(245, 104, 45, 0.2);
}

.form-switch .form-check-input:checked {
    background-color: #f5682d;
    border-color: #f5682d;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.input-group-text {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-muted);
}

/* ===========================================
   BADGES
   =========================================== */
.badge {
    padding: 6px 12px;
    font-weight: 500;
    border-radius: 6px;
    font-size: 0.8rem;
}

.badge-primary {
    background: rgba(30, 58, 95, 0.1);
    color: var(--primary-color);
}

.badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

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

.badge-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
}

.badge-info {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info-color);
}

/* ===========================================
   FILE CARDS
   =========================================== */
.file-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all var(--transition-fast);
    text-align: center;
}

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

.file-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.file-name {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===========================================
   ACCORDION (Templos e PLs)
   =========================================== */
.templo-accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 12px !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.templo-accordion .accordion-button {
    background: var(--bg-white);
    font-weight: 600;
    color: var(--text-dark);
    padding: 20px 24px;
}

.templo-accordion .accordion-button:not(.collapsed) {
    background: var(--bg-light);
    color: var(--primary-color);
    box-shadow: none;
}

.templo-accordion .accordion-button::after {
    background-size: 1rem;
}

.pl-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pl-item {
    border-bottom: 1px solid var(--border-color);
}

.pl-item:last-child {
    border-bottom: none;
}

.pl-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.pl-header:hover {
    background: var(--bg-light);
}

.pl-name {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pl-content {
    padding: 0 24px 20px;
}

.tipo-section {
    margin-bottom: 20px;
}

.tipo-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===========================================
   UPLOAD AREA
   =========================================== */
.upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.upload-area:hover,
.upload-area.dragover {
    border-color: var(--primary-color);
    background: rgba(30, 58, 95, 0.02);
}

.upload-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

/* ===========================================
   MODALS
   =========================================== */
.modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 24px;
}

.modal-title {
    font-weight: 600;
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 16px 24px;
}

/* ===========================================
   ALERTS
   =========================================== */
.alert {
    border: none;
    border-radius: 10px;
    padding: 16px 20px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #065f46;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #92400e;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    color: #1e40af;
}

/* ===========================================
   EMPTY STATE
   =========================================== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-icon {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 20px;
}

.empty-state h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ===========================================
   RESPONSIVE
   =========================================== */
/* ===========================================
   SIDEBAR COLLAPSED (Desktop)
   =========================================== */
.sidebar-collapse-toggle {
    display: none;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all var(--transition-fast);
    font-size: 1.2rem;
    margin-left: auto;
}

.sidebar-collapse-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

@media (min-width: 992px) {
    .sidebar-collapse-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Estado colapsado */
    .sidebar.collapsed {
        width: 80px;
    }

    .sidebar.collapsed .sidebar-header {
        padding: 24px 10px;
        display: flex;
        justify-content: center;
    }

    .sidebar.collapsed .sidebar-brand {
        justify-content: center;
    }

    .sidebar.collapsed .sidebar-logo {
        max-width: 40px;
        max-height: 40px;
    }

    .sidebar.collapsed .sidebar-collapse-toggle {
        display: none;
    }

    .sidebar.collapsed .sidebar-nav .nav-link span {
        display: none;
    }

    .sidebar.collapsed .nav-item {
        margin: 2px 8px;
    }

    .sidebar.collapsed .nav-link {
        justify-content: center;
        padding: 12px;
        gap: 0;
    }

    .sidebar.collapsed .nav-link i {
        font-size: 1.3rem;
    }

    .sidebar.collapsed .sidebar-footer {
        padding: 12px 8px;
    }

    .sidebar.collapsed .user-details,
    .sidebar.collapsed .user-info .btn {
        display: none;
    }

    .sidebar.collapsed .user-info {
        justify-content: center;
    }

    .sidebar.collapsed .user-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .sidebar.collapsed .nav-section-title {
        display: none;
    }

    .sidebar.collapsed .nav-dropdown-items {
        display: none;
    }

    /* Botão para expandir dentro do sidebar colapsado */
    .sidebar.collapsed .sidebar-expand-btn {
        display: flex;
    }

    .sidebar-expand-btn {
        display: none;
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.7);
        cursor: pointer;
        padding: 10px;
        width: 100%;
        justify-content: center;
        font-size: 1.2rem;
        transition: all var(--transition-fast);
    }

    .sidebar-expand-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    /* Ajustar main-content quando sidebar colapsado */
    .main-content.sidebar-collapsed {
        margin-left: 80px;
    }
}

@media (max-width: 991px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .menu-toggle {
        display: block !important;
    }

    .sidebar-collapse-toggle,
    .sidebar-expand-btn {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .content-area {
        padding: 20px 15px;
    }

    .top-header {
        padding: 12px 15px;
    }

    .login-body,
    .login-header {
        padding: 20px;
    }
}

/* ===========================================
   UTILITIES
   =========================================== */
.text-primary { color: #000000 !important; }
.text-muted { color: var(--text-muted) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-light { background-color: var(--bg-light) !important; }

.rounded-lg { border-radius: 12px !important; }
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }

.breadcrumb-item a {
    color: #f5682d;
}

.breadcrumb-item a:hover {
    color: #c44f1e;
}

.page-item.active .page-link {
    background-color: #f5682d;
    border-color: #f5682d;
}

.page-link {
    color: #f5682d;
}

.page-link:hover {
    color: #c44f1e;
}

.nav-tabs .nav-link.active {
    color: #f5682d;
    border-bottom-color: #f5682d;
}

.nav-tabs .nav-link:hover {
    color: #c44f1e;
}

.progress-bar {
    background-color: #f5682d;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
}

/* Scrollbar customizado */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ===========================================
   Estilos para Vans
   =========================================== */

/* Ícone do Galpão na listagem */
.galpao-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6c757d, #495057);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

/* Ícone do Van na listagem */
.van-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #c44f1e);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

/* Ícone grande do Van (página de detalhes) */
.van-icon-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #c44f1e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

/* Display de endereço do Van */
.van-endereco-display {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 10px;
}

.endereco-item {
    display: flex;
    flex-direction: column;
}

.endereco-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.endereco-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Container do QR Code */
.qrcode-container {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
}

#qrcode img {
    max-width: 100%;
    height: auto;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.empty-state p {
    margin-bottom: 20px;
}

/* Badge para tipo operacional */
.badge-info {
    background-color: #17a2b8 !important;
    color: white !important;
}

/* Lista de itens no modal de busca */
.list-group-item-action:hover {
    background-color: var(--bg-light);
}

/* Melhorias na tabela de itens */
.table-hover tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.05);
}

/* Responsividade para página do Van */
@media (max-width: 768px) {
    .van-icon-large {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .endereco-value {
        font-size: 1rem;
    }

    .van-endereco-display {
        margin-top: 15px;
    }
}
