
    /* Reusing styles from licitacoes.php for consistency */
    .titulo-licitacoes {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1f2937;
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
        padding-bottom: 1rem;
    }
    
    .titulo-licitacoes::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 4px;
        background: linear-gradient(90deg, #3b82f6, #2563eb, #1d4ed8);
        border-radius: 2px;
    }

    /* Custom styles for this page */
    .nav-pills .nav-link {
        color: #555;
        font-weight: 600;
        border-radius: 50px;
        padding: 10px 25px;
        margin: 0 5px;
        transition: all 0.3s ease;
    }

    .nav-pills .nav-link.active {
        background-color: #3b82f6;
        color: white;
        box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
    }

    .info-card {
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        padding: 2rem;
        margin-bottom: 2rem;
        border: none;
    }

    .contact-card {
        background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
        border: 1px solid #e5e7eb;
        border-radius: 15px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
    }

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .table-custom {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 0 20px rgba(0,0,0,0.05);
        border-collapse: separate;
        border-spacing: 0;
        width: 100%;
    }

    .table-custom thead th {
        background-color: #3b82f6;
        color: white;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: none;
        padding: 15px;
    }

    .table-custom tbody tr:nth-of-type(odd) {
        background-color: rgba(0, 0, 0, 0.02);
    }

    .table-custom tbody tr:hover {
        background-color: rgba(59, 130, 246, 0.05);
        transform: scale(1.001);
        transition: all 0.2s ease;
    }

    .table-custom th, .table-custom td {
        vertical-align: middle;
        padding: 12px 15px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .table-custom tbody tr:last-child td {
        border-bottom: none;
    }

    .legend-item {
        background: #f8f9fa;
        border-left: 4px solid #3b82f6;
        padding: 15px;
        margin-bottom: 10px;
        border-radius: 0 10px 10px 0;
    }

    /* Dark mode overrides */
    body.dark-mode .titulo-licitacoes {
        color: #e2e8f0 !important;
    }
    body.dark-mode .info-card {
        background: #283347 !important;
        color: #e2e8f0 !important;
    }
    body.dark-mode .contact-card {
        background: linear-gradient(135deg, #283347 0%, #1e293b 100%) !important;
        border-color: #475569 !important;
        color: #e2e8f0 !important;
    }
    
    /* Table Dark Mode */
    body.dark-mode .table-custom {
        background-color: #283347 !important;
        color: #e2e8f0 !important;
        border-color: #475569 !important;
    }
    body.dark-mode .table-custom th, 
    body.dark-mode .table-custom td, 
    body.dark-mode .table-custom tr {
        background-color: #283347 !important;
        color: #e2e8f0 !important;
        border-color: #475569 !important;
    }
    
    /* Striped rows effect */
    body.dark-mode .table-custom tbody tr:nth-of-type(odd) td,
    body.dark-mode .table-custom tbody tr:nth-of-type(odd) th {
        background-color: rgba(255, 255, 255, 0.03) !important;
    }
    
    /* Hover effect */
    body.dark-mode .table-custom tbody tr:hover td,
    body.dark-mode .table-custom tbody tr:hover th {
        background-color: #334155 !important;
        color: #ffffff !important;
    }
    
    /* Header */
    body.dark-mode .table-custom thead th {
        background-color: #1e3a8a !important;
        color: #ffffff !important;
        border-bottom-color: #60a5fa !important;
    }

    body.dark-mode .modal-content {
        background-color: #283347 !important;
    }
    body.dark-mode .modal-body.bg-light {
        background-color: #1e293b !important;
    }
    body.dark-mode .bg-light {
        background-color: #1e293b !important;
    }
    body.dark-mode .btn-close {
        filter: invert(1) grayscale(100%) brightness(200%);
    }
    
    /* Legend items */
    body.dark-mode .legend-item {
        background-color: #283347 !important;
        color: #e2e8f0 !important;
        border-left-color: #60a5fa !important;
    }
    body.dark-mode .text-muted {
        color: #cbd5e1 !important;
    }
    body.dark-mode .text-primary {
        color: #60a5fa !important;
    }