 /* Custom Contrast Styles */
    

    .table {
        background-color: #fff !important; /* pure white for table */
        color: #222 !important;
    }
    .table thead th {
        background: #e8f0fe !important; /* soft blue for header */
        color: #17375e !important;      /* dark blue text */
    }
    .table-hover tbody tr:hover {
        background-color: #f0f5ff !important;
    }
    .btn-primary, .btn-success, .btn-info {
        color: #fff !important;
        text-shadow: 0 1px 2px rgba(0,0,0,0.18);
    }
    .btn-outline-success {
        border-color: #198754 !important;
        color: #198754 !important;
        background: #fff !important;
    }
    .btn-outline-success:hover {
        background: #198754 !important;
        color: #fff !important;
    }
    .btn-danger {
        color: #fff !important;
    }
    .btn-outline-secondary {
        background: #fff !important;
        color: #5a5a5a !important;
        border-color: #5a5a5a !important;
    }
    .btn-outline-secondary:hover {
        background: #5a5a5a !important;
        color: #fff !important;
    }
    .fw-bold, .fw-semibold {
        color: #15395a !important;
    }
    .alert-warning {
        background: #fffbe7 !important;
        color: #664d03 !important;
        border-color: #ffe066 !important;
    }
    /* Add focus outlines for accessibility */
    a:focus, button:focus {
        outline: 2px solid #1976d2 !important;
        outline-offset: 2px;
    }