.nav-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    max-width: 900px;
    margin: auto;
    padding: 10px 0;
}

.source-btn {
    padding: 10px;
    background-color: #0f2e62f2;
    width: 19%;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: start;
    cursor: pointer;
}

.source-btn:hover {
    transform: scale(105%);
}

.source-name {
    font-weight: bold;
    line-height: 1.2em !important;
    color: #d3d3d3 !important;
    margin-bottom: 0.8em !important;
}

.source-bio {
    color: white !important;
    font-size: 1em !important;
    line-height: 1.2em !important;
    margin-bottom: 0.5em !important;
}

.source-image {
    max-width: 200px;
    width: 100%;
    margin-bottom: 0.5em !important;
}

.sidebar-container {
    float: left;
    position: fixed;
    top: 50%;
    transform: translate(0, -55%);
    left: 5px;
    display: flex;
    gap: 5px;
    opacity: 0;
}

.nav-sidebar {
    z-index: 100;
    border-radius: 4em;
    background-color: #0f2e62f2;
    padding: 4px 3px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.sidebar-names {
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar-btn {
    border-radius: 50%;
    width: 1em !important;
    height: 1em !important;
    background-color: white;
    border: none;
    padding: 0 !important;
    cursor: pointer;
}

.sidebar-name {
    color: #d3d3d3 !important;
    font-size: 1em !important;
    background-color: white !important;
    padding: 1px !important;
    margin-bottom: 0 !important;
    font-weight: bold;
    transform: translate(-150%, 0);
}

.sidebar-name.show {
    transition: transform 0.25s;
    transform: translate(0, 0);
}

.sidebar-el {
    display: flex;
    align-items: center;
    gap: 2px;
}

@media (max-width: 550px) {
    .sidebar-container {
        position: fixed;
        top: 100%;
        left: 50%;
        transform: translate(-50%, -350%);
        display: flex;
        opacity: 0;
        justify-content: center;
        width: 350px;
        padding: 5px;
        height: fit-content;
    }

    .sidebar-btn {
        border-radius: 0;
        background-color: transparent;
        width: 20% !important;
        border: none;
        cursor: pointer;
    }

    .mini-image {
        max-width: 80px;
        width: 100% !important;
        border: 5px solid #0f2e62f2;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .source-btn {
        width: 30%;
    }

    .source-btn:hover {
        transform: none;
    }
}