@font-face {
    font-family: "Aptos";
    src: url("./aptos.ttf") format('truetype');
}

body {
    width: 100%;
    font-family: 'Aptos', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

.header {
    max-height: 30vh;
    background-color: rgb(66, 110, 222);
    position: sticky;
    top: 0;
    z-index: 2;
}

.dropdown-menu {
    border-radius: 8px;
    padding: 0.5rem 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #000;
    border-bottom: 1px solid #eaeaea;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item span {
    color: #888;
    font-weight: normal;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: rgb(33, 119, 211);
}

.dropdown-item:hover span {
    color: rgb(33, 119, 211);
}

.nav-link.active {
    color: #fff !important;
    font-weight: bolder;
}

.navbar-nav .nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-item:not(:last-child) {
    margin-bottom: 0.3rem;
}