/* Navbar */

.navbar-custom {
    background-color: rgb(74, 101, 188);
}

/* NavLink */

nav .pagination {
    justify-content: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    /* Remove underline on the link */
}

.nav-link:hover {
    color: white;
}

.nav-link.active {
    color: blue;
}

/* Card */

.card-custom {
    .card-header {
        background-color: rgb(74, 101, 188);
        color: white;
    }
}

/* Hover icon - more info */

.info-container {
    position: relative;
    display: inline-block;
}

.info-icon {
    font-size: 12pt;
    cursor: pointer;
}

.additional-info {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: fit-content;
}

.info-container:hover .additional-info {
    display: block;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.overflow-x-auto {
    overflow-x: auto;
}

.listing {
    padding: 8px 0 12px 0;
}
.listing:not(:last-child) {
    border-bottom: 1px solid grey;
}

#navbarTogglerDemo02 .navbar-nav .nav-link.active, #navbarTogglerDemo02 .navbar-nav .nav-link.active:hover {
    color: rgb(134 255 172)
}

#navbarTogglerDemo02 .navbar-nav .nav-link:hover {
    color: rgb(198, 255, 214)
}
