/* Set background color and text color */
body {
    background-color: #212529;
    color: white;
}

/* Custom navbar styles */
.navbar-custom {
    background-color: #ce2323 !important;
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: white !important;
}

.navbar-custom .nav-link:hover {
    color: #ddd !important;
}

.navbar {
    background-color: #ce2323 !important;
}

.navbar-nav {
    list-style: none;  /* Removes bullet points */
}

.btn-danger, .bg-danger  {
    background-color: #ce2323 !important;
    border-color: #ce2323 !important;
    color: white !important;
}
.bg-purple {
    background-color: #6f42c1 !important;
    color: #fff;
}

.bg-accent {
    background-color: #ce2323 !important;
    color: #fff;
}

.page-link {
    color: #ce2323;
}

.page-link:hover {
    color: #a71d1d; /* Darker shade of #ce2323 for hover */
}
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; 
}