/* assets/css/style.css - Design System MecânicaFlow */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Cores do Tema */
    --sidebar-bg: #1e293b;
    --sidebar-text: #94a3b8;
    --sidebar-active-bg: #0d9488; /* Verde-azulado/petróleo das imagens */
    --sidebar-active-text: #ffffff;
    
    --primary: #2563eb;       /* Azul Royal */
    --primary-hover: #1d4ed8;
    --secondary: #0d9488;     /* Verde-petróleo */
    --secondary-hover: #0f766e;
    --orange-accent: #f97316; /* Laranja da Assinatura */
    --orange-accent-hover: #ea580c;
    
    --bg-main: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    
    /* Cores de Status */
    --danger: #ef4444;        /* Vermelho / Atrasado / Gargalo */
    --danger-light: #fee2e2;
    --warning: #f59e0b;       /* Amarelo / Vence em breve / Pendente */
    --warning-light: #fef3c7;
    --success: #10b981;       /* Verde / Concluído / Em dia */
    --success-light: #d1fae5;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    overflow-x: hidden;
}

/* Micro-animações */
.fade-in {
    animation: fadeIn 0.35s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Estrutura de Layout */
.app-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* Sidebar Desktop */
.sidebar {
    width: 260px;
    background-color: var(--sidebar-bg);
    color: var(--sidebar-text);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    transition: var(--transition);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-brand {
    padding: 1.5rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-brand img {
    height: 40px;
    object-fit: contain;
}

.sidebar-menu {
    flex: 1;
    padding: 1rem 0.75rem;
    overflow-y: auto;
}

.menu-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 0.5rem;
    color: #475569;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--sidebar-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    cursor: pointer;
    transition: var(--transition);
}

.menu-item:hover {
    background-color: rgba(255, 255, 255, 0.03);
    color: #f8fafc;
}

.menu-item.active {
    background-color: var(--sidebar-active-bg);
    color: var(--sidebar-active-text);
}

/* Submenu Dropdowns */
.menu-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-dropdown-icon {
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.menu-dropdown-trigger.open .menu-dropdown-icon {
    transform: rotate(90deg);
}

.submenu {
    display: none;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.submenu.open {
    display: block;
}

.submenu-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    color: var(--sidebar-text);
    text-decoration: none;
    border-radius: var(--radius-sm);
    margin-bottom: 0.15rem;
    transition: var(--transition);
}

.submenu-item:hover {
    background-color: rgba(255, 255, 255, 0.02);
    color: #f8fafc;
}

.submenu-item.active {
    background-color: rgba(13, 148, 136, 0.15);
    color: var(--sidebar-active-bg);
    font-weight: 600;
}

/* Botões da Sidebar */
.sidebar-footer {
    padding: 1rem 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-sidebar-blue {
    background-color: #2563eb;
    color: white !important;
    text-align: center;
    justify-content: center;
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-sidebar-blue:hover {
    background-color: #1d4ed8;
}

.btn-sidebar-orange {
    background-color: #ea580c;
    color: white !important;
    text-align: center;
    justify-content: center;
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2);
}

.btn-sidebar-orange:hover {
    background-color: #c2410c;
}

/* Área Principal de Conteúdo */
.main-wrapper {
    flex: 1;
    margin-left: 260px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

/* Header Superior */
.top-header {
    height: 70px;
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 40;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.zoom-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.zoom-slider {
    width: 80px;
    accent-color: var(--sidebar-active-bg);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.support-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.support-btn:hover {
    background-color: rgba(16, 185, 129, 0.05);
}

.icon-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.15rem;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.icon-btn:hover {
    background-color: var(--bg-main);
    color: var(--text-main);
}

.notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 8px;
    height: 8px;
    background-color: var(--danger);
    border-radius: 50%;
}

.user-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #0f766e;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
}

/* Área de Conteúdo */
.content-body {
    padding: 2rem;
    flex: 1;
}

/* Abas de Navegação (Dashboard e outros) */
.nav-tabs {
    display: flex;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.tab-link {
    padding: 0.75rem 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.tab-link:hover {
    color: var(--text-main);
}

.tab-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 600;
}

/* Cards de Métricas */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

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

.metric-info h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.metric-info .value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
}

.metric-info .sub-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.metric-icon.blue { background-color: rgba(37, 99, 235, 0.1); color: #2563eb; }
.metric-icon.orange { background-color: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.metric-icon.purple { background-color: rgba(99, 102, 241, 0.1); color: #6366f1; }
.metric-icon.green { background-color: rgba(16, 185, 129, 0.1); color: #10b981; }

/* Ações Rápidas */
.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-main);
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.action-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
}

.action-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.action-card i {
    font-size: 1.75rem;
}

.action-card span {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

/* Modais Explicativos e de Ações */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 1.5rem;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 600px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    animation: modalSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-large {
    max-width: 850px;
}

@keyframes modalSlide {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    padding: 1.25rem 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header.blue { background-color: var(--primary); }
.modal-header.green { background-color: var(--secondary); }
.modal-header.orange { background-color: var(--orange-accent); }

.modal-title {
    font-size: 1.15rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: white;
}

.modal-body {
    padding: 1.5rem;
    max-height: 75vh;
    overflow-y: auto;
}

.modal-footer {
    padding: 1rem 1.5rem;
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

/* Modais Especiais (Informativos/Prints) */
.info-section {
    margin-bottom: 1.25rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
}

.info-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary { background-color: var(--primary); color: white; }
.btn-primary:hover { background-color: var(--primary-hover); }

.btn-secondary { background-color: white; border-color: var(--border-color); color: var(--text-main); }
.btn-secondary:hover { background-color: var(--bg-main); }

.btn-success { background-color: var(--success); color: white; }
.btn-success:hover { background-color: #059669; }

.btn-danger { background-color: var(--danger); color: white; }
.btn-danger:hover { background-color: #dc2626; }

/* Formulários */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-main);
    background-color: var(--card-bg);
    transition: var(--transition);
}

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

/* Tabelas */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.custom-table th {
    background-color: var(--bg-main);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.custom-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.92rem;
    color: var(--text-main);
}

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

.custom-table tr:hover td {
    background-color: rgba(248, 250, 252, 0.6);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-success { background-color: var(--success-light); color: var(--success); }
.badge-danger { background-color: var(--danger-light); color: var(--danger); }
.badge-warning { background-color: var(--warning-light); color: var(--warning); }
.badge-info { background-color: rgba(37, 99, 235, 0.1); color: var(--primary); }

/* Quadro Kanban (Fluxo Operacional) */
.kanban-control-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    background-color: var(--card-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.kanban-mode-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f1f5f9;
    padding: 0.25rem;
    border-radius: var(--radius-sm);
}

.toggle-option {
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-option.active {
    background-color: var(--card-bg);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.kanban-board {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 1.5rem;
    min-height: 60vh;
    align-items: flex-start;
}

.kanban-column {
    background-color: #f1f5f9;
    border-radius: var(--radius-md);
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    max-height: 70vh;
}

.kanban-column-header {
    padding: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-main);
}

.kanban-column-counter {
    background-color: #cbd5e1;
    color: var(--text-main);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.kanban-cards-area {
    padding: 0.75rem;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 150px;
}

.kanban-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-sm);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    cursor: grab;
    transition: var(--transition);
    position: relative;
}

.kanban-card:active {
    cursor: grabbing;
}

.kanban-card.gargalo {
    border-left: 4px solid var(--danger);
}

.kanban-card.dragging {
    opacity: 0.5;
    transform: scale(0.95);
}

.card-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.card-placa {
    font-size: 0.75rem;
    font-weight: 700;
    background-color: #e2e8f0;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    display: inline-block;
    color: #475569;
    margin-bottom: 0.5rem;
}

.card-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.card-badge-gargalo {
    background-color: var(--danger-light);
    color: var(--danger);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.15rem 0.35rem;
    border-radius: 4px;
    margin-top: 0.5rem;
    display: inline-block;
}

/* Agenda de Revisões */
.agenda-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Modais de Peças e Serviços rápidos */
.item-selection-table {
    width: 100%;
    margin-top: 1rem;
}

.item-selection-table th, .item-selection-table td {
    padding: 0.5rem;
    text-align: left;
}

/* Mobile Nav (Bottom Navbar) */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: var(--sidebar-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 60;
    justify-content: space-around;
    align-items: center;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--sidebar-text);
    text-decoration: none;
    font-size: 0.75rem;
    gap: 0.2rem;
    transition: var(--transition);
}

.bottom-nav-item i {
    font-size: 1.25rem;
}

.bottom-nav-item.active {
    color: var(--sidebar-active-bg);
}

/* Tela de login premium */
.auth-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0f172a;
    padding: 1.5rem;
}

.auth-card {
    background-color: #1e293b;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 420px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header img {
    height: 50px;
    margin-bottom: 1rem;
}

.auth-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.auth-header p {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.auth-card .form-control {
    background-color: #0f172a;
    border-color: #334155;
    color: white;
}

.auth-card .form-control:focus {
    border-color: var(--primary);
}

.auth-card .form-label {
    color: #cbd5e1;
}

.auth-card .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 0.75rem;
    margin-top: 1rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.88rem;
    color: #94a3b8;
}

.auth-footer a {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Menu Mobile Hamburguer */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.35rem;
    cursor: pointer;
}

/* Responsividade Geral */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .main-wrapper {
        margin-left: 0;
        padding-bottom: 60px; /* Para não cobrir a barra inferior */
    }
    
    .bottom-nav {
        display: flex;
    }
    
    .top-header {
        padding: 0 1rem;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .content-body {
        padding: 1rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .quick-actions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Impressão Limpa */
@media print {
    .sidebar, .top-header, .bottom-nav, .no-print, .btn, .nav-tabs, .kanban-control-bar, .support-btn, .mobile-toggle {
        display: none !important;
    }
    
    .main-wrapper {
        margin-left: 0 !important;
        padding: 0 !important;
    }
    
    body {
        background-color: white !important;
        color: black !important;
    }
    
    .card, .table-responsive {
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
    }
    
    .custom-table th {
        background-color: #f1f5f9 !important;
        color: black !important;
        border-bottom: 2px solid black !important;
    }
    
    .custom-table td {
        border-bottom: 1px solid #e2e8f0 !important;
    }
}
