@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: #070F2B !important;
}

.header {
    display: flex;
    justify-content: space-evenly;
    align-content: center;
    align-items: center;
}

.header>span {
    font-size: 2rem;
}

.my-container {
    margin-top: 15px;
    color: white;
}

.header-fixed .my-container {
    margin-top: 0;
}

.bottom-sheet {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    pointer-events: none;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.1s linear;
    z-index: 99;
}

.bottom-sheet.show-own {
    opacity: 1;
    pointer-events: auto;
}

.bottom-sheet .sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background: #000;
}

.bottom-sheet .content {
    width: 100%;
    position: relative;
    background: #fff;
    max-height: 100vh;
    height: 10vh;
    padding: 25px 30px;
    transform: translateY(100%);
    border-radius: 12px 12px 0 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: 0.3s ease;
    background: linear-gradient(196.15deg, #1A3A73 24.99%, #3F8BCB 82.03%);
}

.bottom-sheet.show-own .content {
    transform: translateY(25%);
}

.bottom-sheet.dragging .content {
    transition: none;
}

.content {
    cursor: grab;
}

.sheet-button {
    cursor: pointer;
    color: white;
}

.bottom-sheet.fullscreen .content {
    border-radius: 0;
    overflow-y: hidden;
}

.bottom-sheet .header {
    display: flex;
    justify-content: center;
}

.bottom-sheet .body {
    height: 100%;
    overflow-y: auto;
    padding: 15px 0 40px;
    scrollbar-width: none;
    color: white;
}

.bottom-sheet .body::-webkit-scrollbar {
    width: 0;
}

.bottom-sheet .body h2 {
    font-size: 1.8rem;
}

.bottom-sheet p {
    margin-top: 15px;
    font-size: 1.05rem;
}

.text-center {
    text-align: center;
}

.team {
    padding: 10px 20px;
    background: #070F2B;
    border-radius: 20px;
    flex: 1;
    width: 100%;
    color: #fff;
}

.rotate180 {
    transform: rotate(180deg);
}

.teams-desktop .team {
    background: linear-gradient(196.15deg, #1A3A73 24.99%, #3F8BCB 82.03%);
}

.team-link {
    text-decoration: none !important;
}

.team-img {
    max-height: 100px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    overflow: hidden;
}

.team h4,
.team p {

    margin: 0 0 10px 0;
}

.teams-desktop-container {
    position: relative;
    max-height: 35vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 15px;
}

.teams-desktop-container::-webkit-scrollbar {
    width: 8px;
}

.teams-desktop-container::-webkit-scrollbar-thumb {
    background: linear-gradient(196.15deg, #1A3A73 24.99%, #3F8BCB 82.03%);
    border-radius: 10px;
}

.teams-desktop-container::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.button-pill {
    padding: 8px 18px;
    background: #3F8BCB;
    color: white;
    border-radius: 100px;
    cursor: pointer;
    border: none;
    box-shadow: 0px 2px 4px 0px #ffffff30;
}

.button-pill-status {
    background: black;
    color: white;
    border-radius: 100%;
    position: absolute;
    top: 0;
    left: 20px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    font-size: 12px;
}

.button-pill-status.sold {
    background-color: #32CD32;
}

.button-pill-status.unsold {
    background-color: #FF6347;
}

.player {
    position: relative;
    margin: 0 auto;
    max-width: 200px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info {
    position: absolute;
    top: 5px;
    right: 11px;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: none;
    outline: unset;
}

.player .info img {
    width: 100%;
    height: 100%;
}

.player span {
    position: absolute;
    left: -10px;
    transform: rotate(-50deg);
    bottom: 70px;
}

@media (max-width: 768px) {
    .bottom-sheet .content {
        padding: 15px;
    }

    .header span {
        font-size: 14px;
    }

    .header button {
        font-size: 14px;
    }

    .header img {
        width: 80px;
    }

    .player {
        margin-bottom: 50px;
    }

    .player img {
        width: auto;
        height: 75px;
    }

    .button-pill {
        padding: 6px 14px;
        font-size: 14px;
    }
}