.nav_swiping {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0px 50px;
    align-items: center;
    background: linear-gradient(225deg, #e0dbdb, #b8b1b1);
    min-height: 10vh;
    max-height: 20vh;
}

.nav_swiping .swiping_noheader_signup {
    font-size: 2em;
    font-family: 'Rubik', sans-serif;
    color: var(--main--red);
    font-weight: 600;
    text-transform: uppercase;
}

.nav_swiping img {
    width: 60px;
    height: 60px;
}

.nav_swiping a {
    color: unset;
}

.nav_swiping i {
    font-size: 60px;
    color: white;
}

.user-picture-swiping {
    object-fit: cover;
    border-radius: 8px;
    max-width: 400px;
    border: 5px solid var(--main--red);
}

.button_swiping {
    border: none;
    border-radius: 5px;
    background-color: transparent;
}

.nav-swiping-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.dark-mode .nav_swiping {
    background: linear-gradient(225deg, #444040, #222020);
}

.dark-mode .nav_swiping i {
    color: white;
}

nav .scale {
    cursor: pointer;
    border-radius: 1000px;
}

nav .scaleNoRound {
    cursor: pointer;
}

nav .scale:hover,
nav .scaleNoRound:hover {
    transform: scale(1.1);
}

.chat_nav,
.chat_profile {
    position: relative;
}

.language-switcher label {
    color: #333;
}

.language-switcher select {
    background-color: #f9f9f9;
    color: #111;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.language-switcher select:hover {
    background-color: #fff;
    border-color: #999;
}

.dark-mode .language-switcher label {
    color: #ccc;
}

.dark-mode .language-switcher select {
    background-color: #1a1a1a;
    color: #f0f0f0;
    border: 1px solid #444;
}

.dark-mode .language-switcher select:hover {
    background-color: #2a2a2a;
    border-color: #666;
}

@media only screen and (max-width: 1420px) {
    .swiping_row {
        width: 80%;
    }
}

@media only screen and (max-width: 1300px) {
    .swiping_row {
        width: 100%;
    }
}

@media only screen and (max-width: 1150px) {
    .swiping-ctn {
        max-width: 1000px;
    }
}

@media only screen and (max-width: 1018px) {
    .swiping-game-info {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .swiping-user-info {
        justify-content: center;
        align-items: center;
    }

    .swiping-game-info > :not(:last-child) {
        border-right: none;
    }

    .swiping-game-info > :first-child {
        padding-left: 0;
    }

    .swiping-game-column {
        padding: 0;
        border: none;
    }
}

@media only screen and (max-width: 900px) {
    .nav_swiping {
        min-height: 5vh;
        max-height: 20vh;
    }

    .nav_swiping img {
        width: 50px;
        height: 50px;
    }

    .swiping-ctn #bonus-picture-container {
        display: none;
    }

    .swiping-ctn {
        width: 80%;
        max-width: unset;
    }

    .nav_swiping i {
        font-size: 30px;
        color: white;
    }

    .nav_swiping {
        align-items: center;
        gap: 10px;
        padding: 0px;
    }

    .badge-container-swiping {
        top: 40px;
        left: 220px;
    }
}

@media only screen and (max-width: 600px) {
    .nav_swiping img {
        width: 35px;
        height: 35px;
    }

    .nav_swiping i {
        font-size: 20px;
        color: white;
    }

    .nav-swiping-row {
        gap: 20px;
    }

    .badge-container-swiping {
        top: 20px;
        left: 140px;
    }

    .badge-container-swiping img {
        width: 20px;
        height: 20px;
    }

    .swiping-ctn {
        width: 100%;
        max-width: unset;
    }
}

@media only screen and (max-width: 500px) {
    .nav-swiping-row {
        gap: 10px;
    }
}

@media only screen and (max-width: 400px) {
    .nav-swiping-row {
        gap: 6px;
    }

    .user-picture-swiping {
        width: 75px;
        height: 75px;
    }
}
