/* Sidebar Styling */
.sidebar {
    background-color: #2a2d4c;
    min-height: 100vh;
}

.sidebar .nav-link {
    font-size: 18px;
    color: #ffffff;
}

.sidebar .nav-link:hover {
    background-color: #433d45;
    border-radius: 5px;
    text-decoration: none;
}

/* Custom Card Styles */
.card-custom {
    border-radius: 10px;
    background-color: #ffffff;
}

.card-custom .card-header {
    border-radius: 10px 10px 0 0;
}

.bg-sidebar {
    background-color: #2a2d4c;
}

/* Footer Styling */
.footer {
    background-color: #433d45;
}

/* General Body Styling */
body {
    background-color: #f8f9fa;
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
}

a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}