/* TOP NAVBAR */

.custom-navbar {

    padding: 0px 70px;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.home-btn {

    background: #0d6efd;

    color: white;

    text-decoration: none;

    padding: 10px 18px;

    border-radius: 10px;

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: 8px;

    transition: 0.3s ease;
}

.home-btn:hover {

    background: #0b5ed7;

    transform: translateY(-2px);

    color: white;
}

.logos-box {

    background: white;

    border-radius: 999px;

    padding: 5px 2px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-left: -10px;

}

.sites-logo {

    height: 120px;

    width: 150px;

    display: block;

}

/* View Result button in quiz history table */
.view-result-btn {
    white-space: nowrap;
    font-size: 0.85rem;
}