.nav-item > .nav-link:hover{
    background-color: #FF6347;
}

.main-title {
    color: #FFFFFF;
    font-size: clamp(1rem, 2.2vw, 1.8rem);
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-style{
    background-color: #0A192F;
    color: #FFFFFF;
    height: auto;
    padding: 5px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.sidebar {
    min-height: 82vh;
    height: 100%;
    width: auto;
    transition: all 0.3s ease;
}

.sidebar .nav-text,
.sidebar .brand-text {
    display: none;
}

.sidebar .nav-link {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
}

.sidebar.expanded {
    width: 250px;
}

.sidebar.expanded .nav-text,
.sidebar.expanded .brand-text {
    display: inline;
}

.sidebar.expanded .nav-link {
    text-align: left;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Remove the pseudo-element caret */
.no-caret::after {
  display: none !important;
}

.section{
    display: none;
}

.form-card{
    height: auto;
    margin: 10px;
    padding: 10px;
    border-style: solid;
    border-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 0 5px gray;
}

.dashboard-card{
    min-width: 150px;
    width: auto;
    height: auto;
    margin: 10px;
    padding: 10px;
    border-style: solid;
    border-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 0 5px gray;
}

.dashboard-card:hover{
    box-shadow: 0 0 7px #0088FF;
}