/* Custom CSS for gradient background on card-header */
.bg-gradient-primary {
    background: linear-gradient(45deg, #007bff, #0056b3); /* Blue gradient */
}
.card {
    transition: transform 0.2s ease-in-out;
}
.form-check-input:checked {
    background-color: #007bff;
    border-color: #007bff;
}
.list-group-item:last-child {
    border-bottom: none; /* Remove bottom border for the last item */
}
.list-group-flush .list-group-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}
/* Toast specific styling */
.toast-container {
    z-index: 1080; /* Ensure toast is above other elements, like navbar */
}
.small-text {
    font-size: 0.75rem; /* Smaller text size */
}
.circle-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: bold;
}