/* Replace Bootstrap success green (#198754) with blue (#2672C0) */
:root {
    --bs-success: #2672C0 !important;
}

/* Buttons */
.btn-success {
    background-color: #2672C0 !important;
    border-color: #2672C0 !important;
    color: white !important;
}

/* Backgrounds */
.bg-success {
    background-color: #2672C0 !important;
}

/* Text */
.text-success {
    color: #2672C0 !important;
}

/* Inline styles using #198754 */
*[style*="#198754"] {
    color: #0d6efd !important;
    background-color: #2672C0 !important;
    border-color: #2672C0 !important;
}

:root {
  --bs-success: #0d6efd;
  --bs-success-rgb: 13, 110, 253;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #cfe2ff !important; /* light blue */
  color: #084298 !important;            /* dark blue text */
}

tr.highlight {
  background-color: #cfe2ff; /* blue */
);


.carousel-indicators .active {
    background-color: #2672C0 !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(38,114,192,1.6);
    border-radius: 50%;
    background-size: 60% 60%;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 1 !important; /* always visible */
}

/* Change hover colour for the CSV download button */
button:hover {
    background-color: #cfe2ff;   /* your chosen blue shade */
    color: #000;                 /* adjust if needed for contrast */
    border-color: #9bbce6;       /* optional: matching border */
}
