




/* Estilos gerais */
#app-container { 
    min-height: calc(100vh - 120px); /* Altura total menos altura do footer */
}

/* Mobile Navigation Styles */
@media (max-width: 640px) {
    .nav-container {
        display: none;
    }
    
    .nav-container.active {
        display: block;
    }
    
    #main-nav {
        background: white;
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
    
    .nav-button {
        width: 100%;
        text-align: left;
        border-radius: 0;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .nav-button:last-child {
        border-bottom: none;
    }
}

/* Mobile Menu Toggle */
#mobile-menu-toggle {
    transition: all 0.3s ease;
}

#mobile-menu-toggle.active {
    background-color: #1d4ed8;
}

#mobile-menu-toggle.active i {
    transform: rotate(180deg);
}

/* Mobile Optimized Cards */
@media (max-width: 640px) {
    .bg-white.rounded-2xl {
        border-radius: 1rem;
        margin-bottom: 1rem;
    }
    
    .p-6 {
        padding: 1rem;
    }
    
    .text-3xl {
        font-size: 1.5rem;
    }
    
    .text-2xl {
        font-size: 1.25rem;
    }
    
    .text-xl {
        font-size: 1.125rem;
    }
}

/* Mobile Table Optimizations */
@media (max-width: 768px) {
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    .table-responsive {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table-responsive table {
        width: 100%;
        min-width: 600px;
    }
    
    .table-responsive th,
    .table-responsive td {
        white-space: nowrap;
        padding: 0.5rem;
        font-size: 0.875rem;
    }
}

/* Mobile Form Optimizations */
@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    input, select, textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.75rem;
    }
    
    .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-group button {
        width: 100%;
    }
}

/* Mobile Modal Optimizations */
@media (max-width: 640px) {
    .modal {
        padding: 1rem;
    }
    
    .modal-content {
        margin: 0;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-footer {
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .modal-footer button {
        width: 100%;
    }
}

/* Mobile Button Optimizations */
@media (max-width: 640px) {
    .btn {
        min-height: 44px; /* Touch target size */
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }
    
    .btn-sm {
        min-height: 36px;
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    
    .btn-lg {
        min-height: 48px;
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}

/* Mobile Status Badge Optimizations */
@media (max-width: 640px) {
    .status-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        min-width: 80px;
    }
}

/* Mobile Chart Optimizations */
@media (max-width: 768px) {
    .chart-container {
        height: 200px;
    }
    
    .chart-bar-container {
        margin-bottom: 0.5rem;
    }
    
    .chart-bar {
        height: 0.75rem;
    }
}

/* Mobile Dashboard Optimizations */
@media (max-width: 640px) {
    .dashboard-header {
        padding: 1rem;
    }
    
    .dashboard-filters {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .dashboard-filter-btn {
        width: 100%;
        text-align: center;
    }
    
    .kpi-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .chart-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Mobile Search and Filter Optimizations */
@media (max-width: 640px) {
    .search-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .search-input {
        width: 100%;
    }
    
    .filter-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .filter-select {
        width: 100%;
    }
}

/* Mobile List Optimizations */
@media (max-width: 640px) {
    .list-item {
        padding: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .list-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .list-item-actions {
        flex-direction: column;
        gap: 0.25rem;
        width: 100%;
    }
    
    .list-item-actions button {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Navigation Button Styles */
.nav-button {
    background: transparent;
    color: #6b7280;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    text-align: left;
}

.nav-button:hover {
    background: #f3f4f6;
    color: #374151;
}

.nav-button.active {
    background: #3b82f6;
    color: white;
}

/* Mobile Touch Optimizations */
@media (max-width: 640px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    button, a, input, select, textarea {
        -webkit-tap-highlight-color: rgba(59, 130, 246, 0.1);
    }
    
    .touch-target {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Mobile Loading States */
@media (max-width: 640px) {
    .loading-skeleton {
        height: 1rem;
        background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 37%, #f3f4f6 63%);
        background-size: 400% 100%;
        animation: skeleton 1.4s ease infinite;
        border-radius: 0.25rem;
        margin-bottom: 0.5rem;
    }
    
    .loading-skeleton:last-child {
        margin-bottom: 0;
    }
}

/* Mobile Toast Notifications */
@media (max-width: 640px) {
    .toast {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        z-index: 9999;
        max-width: none;
    }
    
    .toast-content {
        padding: 1rem;
        border-radius: 0.5rem;
        font-size: 0.875rem;
    }
}

/* Mobile Print Optimizations */
.no-print {
    display: none !important;
}

.print-only {
    display: block !important;
}

body {
    font-size: 12px;
    line-height: 1.4;
}

.page-break {
    page-break-before: always;
}

/* Estilos para os status dos pedidos */
.status-badge { 
    padding: 4px 12px; 
    border-radius: 9999px; 
    font-size: 0.8rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
    min-width: 120px;
    text-align: center;
    display: inline-block;
}

.status-pendente { 
    background-color: #fef3c7; 
    color: #92400e; 
}

.status-em-cotacao { 
    background-color: #dbeafe; 
    color: #1e40af; 
}

.status-aguardando-aprovacao { 
    background-color: #fef3c7; 
    color: #d97706; 
}

.status-aprovado { 
    background-color: #d1fae5; 
    color: #065f46; 
}

.status-concluido { 
    background-color: #e5e7eb; 
    color: #374151; 
}

.status-cancelado { 
    background-color: #fee2e2; 
    color: #991b1b; 
}

.status-aguardando-compra { 
    background-color: #ede9fe; 
    color: #5b21b6; 
}

.status-aguardando-entrega { 
    background-color: #fee2e2; 
    color: #991b1b; 
}

.status-entregue { 
    background-color: #dcfce7; 
    color: #166534; 
}

/* Estilos para os níveis de urgência */
.urgency-Normal { 
    background-color: #e0e7ff; 
    color: #3730a3; 
}

.urgency-Urgente { 
    background-color: #fef9c3; 
    color: #854d0e; 
}

.urgency-Muito-Urgente { 
    background-color: #fee2e2; 
    color: #b91c1c; 
}

/* Estilo para itens de estoque atrasados */
.delivery-on-time {
    border-color: #86efac !important;
}

.delivery-due-today {
    background-color: #fefce8;
    border-color: #fde047 !important;
}

.delivery-late {
    background-color: #fff1f2;
    border-color: #fca5a5 !important;
}

/* Estilos para a navegação */
.nav-button { 
    padding: 8px 16px; 
    border-radius: 6px; 
    font-weight: 500; 
    color: #4b5563; 
    border: 2px solid transparent; 
    transition: all 0.2s; 
    white-space: nowrap; 
}

.nav-button:hover { 
    background-color: #f3f4f6; 
}

.nav-button.active { 
    font-weight: 700; 
    color: #1d4ed8; 
    border-bottom: 2px solid #2563eb; 
    background-color: #eff6ff; 
}

/* Estilos para modais */
.modal-backdrop { 
    background-color: rgba(0, 0, 0, 0.6); 
    backdrop-filter: blur(4px); 
}

/* Modal de fornecedor deve aparecer na frente de outros modais */
#modal-new-supplier {
    z-index: 70 !important;
}

/* Modal de cotação */
#modal-new-quote {
    z-index: 50;
}

/* Modal de pedido */
#modal-new-order {
    z-index: 50;
}

/* Modal de confirmação */
#modal-confirm {
    z-index: 55;
}

/* Modal de adicionar item rápido deve aparecer na frente de outros modais */
#modal-quick-add-item {
    z-index: 80 !important;
}

/* Estilos para botões especiais */
.whatsapp-button { 
    background: #25D366; 
}

/* Animação e estilo para a barra de gráfico */
.chart-bar-container { 
    cursor: pointer; 
    padding: 2px 0; 
    border-radius: 4px; 
    transition: background-color 0.2s; 
}

.chart-bar-container:hover { 
    background-color: #f3f4f6; 
}

.chart-bar { 
    transition: width 0.5s ease-in-out; 
}

/* Estilos de Impressão da OC */
@media print {
    /* Reset completo para impressão */
    * {
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Esconder todo o conteúdo da página */
    body * {
        display: none !important;
    }
    
    /* Mostrar apenas o modal da OC */
    #modal-order-summary {
        display: block !important;
        position: static !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        background: white !important;
        z-index: auto !important;
        overflow: visible !important;
        box-shadow: none !important;
        border: none !important;
    }
    
    /* Mostrar todo o conteúdo do modal */
    #modal-order-summary * {
        display: revert !important;
    }
    
    /* Esconder cabeçalho do modal */
    #oc-print-header {
        display: none !important;
    }
    
    /* Ajustar container do conteúdo */
    #modal-order-summary .bg-white {
        background: white !important;
        box-shadow: none !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
        max-width: none !important;
        max-height: none !important;
        width: 100% !important;
        height: auto !important;
        position: static !important;
        top: auto !important;
        left: auto !important;
    }
    
    /* Garantir que o conteúdo comece no topo da página */
    #order-summary-content {
        position: static !important;
        top: auto !important;
        left: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Container principal da OC */
    .oc-container {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        page-break-inside: avoid !important;
    }
    
    /* Cada página de fornecedor - LAYOUT FIXO */
    .oc-supplier-page {
        width: 100% !important;
        min-height: 100vh !important;
        margin: 0 !important;
        padding: 20px !important;
        page-break-inside: avoid !important;
        page-break-after: always !important;
        position: relative !important;
        background: white !important;
        /* Layout flexbox para controlar posicionamento */
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
    }
    
    /* FORÇAR quebra de página entre fornecedores */
    .oc-supplier-page + .oc-supplier-page {
        page-break-before: always !important;
    }
    
    /* Cabeçalho da OC - SEMPRE NO TOPO */
    .oc-header {
        display: block !important;
        margin: 0 0 20px 0 !important;
        padding: 0 !important;
        text-align: center !important;
        page-break-inside: avoid !important;
        flex-shrink: 0 !important;
    }
    
    .oc-header h1 {
        font-size: 24px !important;
        font-weight: bold !important;
        margin: 0 0 10px 0 !important;
        color: #000 !important;
    }
    
    .oc-header p {
        margin: 5px 0 !important;
        color: #000 !important;
        font-size: 14px !important;
    }
    
    /* Informações do pedido - LOGO APÓS O CABEÇALHO */
    .oc-order-info {
        display: block !important;
        margin: 0 0 20px 0 !important;
        padding: 0 !important;
        page-break-inside: avoid !important;
        flex-shrink: 0 !important;
    }
    
    .oc-order-info h3 {
        font-size: 18px !important;
        font-weight: bold !important;
        margin: 0 0 15px 0 !important;
        color: #000 !important;
    }
    
    .oc-order-info p {
        margin: 8px 0 !important;
        color: #000 !important;
        font-size: 14px !important;
    }
    
    /* Tabelas de itens - APÓS AS INFORMAÇÕES */
    .oc-items-table {
        display: block !important;
        margin: 0 0 20px 0 !important;
        page-break-inside: avoid !important;
        flex-shrink: 0 !important;
    }
    
    .oc-items-table h3 {
        font-size: 18px !important;
        font-weight: bold !important;
        margin: 0 0 15px 0 !important;
        color: #000 !important;
    }
    
    /* Tabelas de condições comerciais - APÓS OS ITENS */
    .oc-commercial-table {
        display: block !important;
        margin: 0 0 20px 0 !important;
        page-break-inside: avoid !important;
        flex-shrink: 0 !important;
    }
    
    .oc-commercial-table h3 {
        font-size: 18px !important;
        font-weight: bold !important;
        margin: 0 0 15px 0 !important;
        color: #000 !important;
    }
    
    /* Rodapé da OC - SEMPRE NO FINAL DA PÁGINA */
    .oc-footer {
        display: block !important;
        margin: 20px 0 0 0 !important;
        padding: 20px 0 0 0 !important;
        border-top: 1px solid #000 !important;
        text-align: center !important;
        position: relative !important;
        page-break-inside: avoid !important;
        flex-shrink: 0 !important;
        margin-top: auto !important;
    }
    
    /* Texto do rodapé */
    .oc-footer p {
        color: #000 !important;
        font-size: 12px !important;
        margin: 5px 0 !important;
        font-weight: normal !important;
    }
    
    /* Tabelas */
    table {
        width: 100% !important;
        border-collapse: collapse !important;
        margin-bottom: 15px !important;
        page-break-inside: avoid !important;
    }
    
    /* Células das tabelas */
    th, td {
        padding: 8px 12px !important;
        text-align: left !important;
        vertical-align: top !important;
        border: 1px solid #000 !important;
        font-size: 12px !important;
        color: #000 !important;
    }
    
    /* Células específicas da OC */
    .oc-item-name, .oc-item-quantity, .oc-item-unit, .oc-item-supplier, .oc-item-price, .oc-item-total,
    .oc-commercial-supplier, .oc-commercial-payment, .oc-commercial-deadline, .oc-commercial-freight {
        padding: 8px 12px !important;
        border: 1px solid #000 !important;
        font-size: 12px !important;
        color: #000 !important;
    }
    
    /* Alinhamento de valores */
    .oc-item-price, .oc-item-total, .oc-commercial-freight {
        text-align: right !important;
    }
    
    /* Cabeçalhos das tabelas */
    th {
        background-color: #f3f4f6 !important;
        font-weight: bold !important;
    }
    
    /* Títulos */
    h1, h2, h3 {
        color: #000 !important;
        font-weight: bold !important;
    }
    
    /* Última página - não quebrar após */
    .oc-supplier-page:last-child {
        page-break-after: auto !important;
    }
    
    /* Garantir que não há espaços extras */
    .oc-supplier-page > *:first-child {
        margin-top: 0 !important;
    }
    
    .oc-supplier-page > *:last-child {
        margin-bottom: 0 !important;
    }
}

/* Estilos para o relatório visual de pedidos por status */
.status-report-card {
    transition: all 0.3s ease;
}

.status-report-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.status-chart-bar {
    transition: width 0.8s ease-out;
}

.status-chart-container {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Animações para os contadores */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.status-count {
    animation: countUp 0.6s ease-out;
}

/* Estilos para o botão de atualizar */
#btn-refresh-report {
    transition: all 0.2s ease;
}

#btn-refresh-report:hover {
    transform: scale(1.05);
}

#btn-refresh-report:active {
    transform: scale(0.95);
}

/* Estilos para a legenda do gráfico */
.status-legend {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Responsividade para o relatório */
@media (max-width: 768px) {
    .status-report-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .status-chart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .status-chart-item .min-w-[120px] {
        min-width: auto;
        width: 100%;
    }
    
    .status-chart-item .min-w-[80px] {
        min-width: auto;
        width: 100%;
        text-align: right;
    }
}

/* Estilos para visualização da OC na tela (não impressão) */
.oc-supplier-page {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.oc-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #3b82f6;
}

.oc-header h1 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.oc-header p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0.25rem 0;
}

.oc-order-info {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.375rem;
}

.oc-order-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
}

.oc-order-info p {
    margin: 0.5rem 0;
    color: #4b5563;
    font-size: 0.875rem;
}

.oc-items-table {
    margin-bottom: 1.5rem;
}

.oc-items-table h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
}

.oc-commercial-table {
    margin-bottom: 1.5rem;
}

.oc-commercial-table h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
}

.oc-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.oc-footer p {
    color: #6b7280;
    font-size: 0.75rem;
    margin: 0.25rem 0;
}

/* Estilos para tabelas na visualização */
.oc-supplier-page table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    background: white;
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.oc-supplier-page th {
    background: #f3f4f6;
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.oc-supplier-page td {
    padding: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
    color: #4b5563;
}

.oc-supplier-page tbody tr:hover {
    background: #f9fafb;
}

.oc-supplier-page tfoot tr {
    background: #f3f4f6;
    font-weight: 600;
}

.oc-supplier-page tfoot tr:last-child {
    background: #3b82f6;
    color: white;
}

/* Estilos para o resumo visual do estoque */
.stock-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stock-summary-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-left: 4px solid;
}

.stock-summary-card.on-time {
    border-left-color: #10b981;
}

.stock-summary-card.due-today {
    border-left-color: #f59e0b;
}

.stock-summary-card.late {
    border-left-color: #ef4444;
}

.stock-summary-card.total {
    border-left-color: #3b82f6;
}

.stock-summary-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stock-summary-label {
    color: #6b7280;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Estilos para filtros do estoque */
.stock-filters {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stock-filters h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
}

.filter-checkboxes {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-checkbox input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: #3b82f6;
}

.filter-checkbox label {
    font-size: 0.875rem;
    color: #374151;
    cursor: pointer;
}

/* Estilos para status de entrega */
.delivery-on-time {
    border-left: 4px solid #10b981 !important;
}

.delivery-due-today {
    border-left: 4px solid #f59e0b !important;
}

/* Dashboard loading skeletons */
.dashboard-skeleton {
    background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 37%, #f3f4f6 63%);
    background-size: 400% 100%;
    animation: skeleton 1.4s ease infinite;
    border-radius: 0.5rem;
}

@keyframes skeleton {
    0% { background-position: 100% 50%; }
    100% { background-position: 0 50%; }
}

/* Responsividade para o resumo do estoque */
@media (max-width: 768px) {
    .stock-summary {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .stock-summary-card {
        padding: 1rem;
    }
    
    .stock-summary-number {
        font-size: 1.5rem;
    }
    
    .filter-checkboxes {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Estilos para dropdown de busca de fornecedores */
.supplier-dropdown-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
}

.supplier-dropdown-item:hover {
    background-color: #f3f4f6;
}

.supplier-dropdown-item.selected {
    background-color: #3b82f6;
    color: white;
}

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

.supplier-dropdown-item .supplier-name {
    font-weight: 500;
}

.supplier-dropdown-item .supplier-category {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.supplier-dropdown-item.selected .supplier-category {
    color: #dbeafe;
}

/* Animação para o dropdown */
.supplier-dropdown-enter {
    opacity: 0;
    transform: translateY(-10px);
}

.supplier-dropdown-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.supplier-dropdown-exit {
    opacity: 1;
    transform: translateY(0);
}

.supplier-dropdown-exit-active {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Estilos para sistema de prazos */
.deadline-normal {
    border-left-color: #10b981 !important;
    background-color: #f0fdf4;
}

.deadline-urgent {
    border-left-color: #f59e0b !important;
    background-color: #fffbeb;
}

.deadline-very-urgent {
    border-left-color: #ef4444 !important;
    background-color: #fef2f2;
}

.deadline-overdue {
    border-left-color: #dc2626 !important;
    background-color: #fef2f2;
    animation: pulse-red 2s infinite;
}

.deadline-warning {
    border-left-color: #f59e0b !important;
    background-color: #fffbeb;
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-red {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes pulse-orange {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.deadline-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.deadline-badge.normal {
    background-color: #d1fae5;
    color: #065f46;
}

.deadline-badge.urgent {
    background-color: #fed7aa;
    color: #92400e;
}

.deadline-badge.very-urgent {
    background-color: #fecaca;
    color: #991b1b;
}

.deadline-badge.overdue {
    background-color: #fecaca;
    color: #991b1b;
    animation: pulse-red 2s infinite;
}

.deadline-badge.warning {
    background-color: #fed7aa;
    color: #92400e;
    animation: pulse-orange 2s infinite;
}
