.banner {
    width: 100%;
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.ranking-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.player-ranking-section {
    margin-top: 20px;
    padding: 10px 15px;
    background: var(--second-bg);
    border-radius: 10px;
}

.user-info {
    position: relative;
    cursor: pointer;
}

.user-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 120px;
    z-index: 1000;
}

.user-menu.show {
    display: block;
}

.user-menu li {
    width: 100%;
}

.logout-btn {
    width: 100%;
    padding: 8px 12px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
}

.logout-btn:hover {
    color: #fff;
}

.vote-action {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.save-ranking-button {
    color: #fff;
    width: fit-content;
}

.note {
    text-transform: uppercase;
    color: red;
    font-weight: bold;
    font-size: 24px;
}

.payment-options {
    display: flex;
    justify-content: space-between;
}

.payment-preview {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.swal2-success-line {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: drawCheck 0.5s 0.5s ease-out forwards;
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.thank-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}