/* styles.css */

/* Header styling */
header {
    background-color: #f8f9fa;
}

header a:hover {
    text-shadow: 1px 1px 1px aqua;
    text-transform: uppercase;
}

body {
    font-family: Arial, sans-serif;
}

h1, h2 {
    font-weight: bold;
}

.card {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.card-header {
    font-weight: bold;
}

.table {
    margin-top: 20px;
}

.btn-sm {
    margin-right: 5px;
}

/* Style for the sidebar */
#sidebar {
    /* height: 200vh; */
    /* position: fixed;
    top: 0;
    left: 0; */
    /* z-index: 100; */
    /* padding-top: 20px; */
    background-color: #f8f9fa;
    box-shadow: 0 4px 12px rgba(240, 234, 234, 0.1);
}

#sidebar .nav-link {
    color: rgb(6, 63, 145);
    font-weight: bold;
    margin-bottom: 15px;
    padding: 10px;
    display: flex;
    align-items: center;
    
}

#sidebar .nav-link.active {
    background-color: rgb(6, 63, 145);
    color: white;
}

#sidebar .nav-link i {
    margin-right: 10px;
}

#sidebar a:hover {
    text-shadow: 1px 1px 1px aqua;
    text-transform: uppercase;
}
