/* Card header styling with white background and #1C2333 text */
.card-header {
    background-color: #ffffff !important;
    color: #1C2333 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.accordion-button {
    background-color: #ffffff !important;
    color: #1C2333 !important;
}

.accordion-button:not(.collapsed) {
    background-color: #ffffff !important;
    color: #1C2333 !important;
}

.accordion-button:focus {
    box-shadow: none !important;
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231C2333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.card-header .btn-outline-secondary,
.card-header .btn-outline-primary,
.card-header .btn-outline-danger {
    color: #1C2333 !important;
    border-color: rgba(28, 35, 51, 0.3) !important;
}

.card-header .btn-outline-secondary:hover,
.card-header .btn-outline-primary:hover,
.card-header .btn-outline-danger:hover {
    background-color: rgba(28, 35, 51, 0.05) !important;
    color: #1C2333 !important;
}

/* Fix table headers that use card-header styling */
.table-light th {
    background-color: #ffffff !important;
    color: #1C2333 !important;
}

/* Style bg-light elements similarly to maintain consistency */
.bg-light {
    background-color: #ffffff !important;
    color: #1C2333 !important;
}