.btn-dark-blue {
    background-color: #0a2540;
    border-color: #0a2540;
    color: #fff;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-dark-blue:hover,
.btn-dark-blue:focus {
    background-color: #051c33;
    border-color: #051c33;
    color: #fff;
}

.btn-dark-blue:focus {
    box-shadow: 0 0 0 0.25rem rgba(10, 37, 64, 0.5);
}

.btn-outline-dark-blue {
    background-color: transparent;
    border-color: var(--crm-border, #0a2540);
    color: var(--crm-text-body, #0a2540);
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-outline-dark-blue:hover,
.btn-outline-dark-blue:focus {
    background-color: var(--crm-bg-soft, #0a2540);
    border-color: var(--crm-border, #0a2540);
    color: var(--crm-text-dark, #fff);
}

.btn-outline-dark-blue:focus {
    box-shadow: 0 0 0 0.25rem rgba(10, 37, 64, 0.5);
    outline: none;
}

.crm-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 104px;
    padding: 0.25rem 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    border: 0;
}

.crm-status-pill.bg-success {
    background-color: rgba(25, 185, 116, 0.15) !important;
    color: #19b974 !important;
}
.crm-status-pill.bg-secondary {
    background-color: rgba(100, 116, 139, 0.15) !important;
    color: #64748b !important;
}
.crm-status-pill.bg-primary {
    background-color: rgba(13, 110, 253, 0.15) !important;
    color: #0d6efd !important;
}
.crm-status-pill.bg-danger {
    background-color: rgba(220, 53, 69, 0.15) !important;
    color: #dc3545 !important;
}
.crm-status-pill.bg-warning {
    background-color: rgba(255, 193, 7, 0.15) !important;
    color: #d39e00 !important; /* darker yellow for better contrast */
}
.crm-status-pill.bg-info {
    background-color: rgba(13, 202, 240, 0.15) !important;
    color: #0aa2c0 !important; /* darker info for better contrast */
}
.crm-status-pill.bg-dark {
    background-color: rgba(33, 37, 41, 0.15) !important;
    color: #212529 !important;
}


[data-theme="dark"] .btn-outline-dark-blue {
    color: #cbd5e1 !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    background: transparent !important;
}

[data-theme="dark"] .btn-outline-dark-blue:hover,
[data-theme="dark"] .btn-outline-dark-blue:focus {
    color: #fff !important;
    background: rgba(59, 91, 219, 0.2) !important;
    border-color: rgba(96, 165, 250, 0.35) !important;
}
