﻿.repeater-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 10px;
}

.StatePlayer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease, transform 1.1s ease;
}

.image-container {
    position: relative;
    display: inline-block;
}

    .image-container .img-responsive {
        display: block;
        width: 250px;
        height: auto;
        border-radius: 8px;
    }

.rank-overlay, .rank-overlay-link {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 17px;
    border-radius: 5px;
    font-size: 28px;
    font-weight: bold;
    border: solid 1px white;
    text-align: center;
    line-height: 24px;
}

    .rank-overlay-link:hover {
        background-color: rgba(0, 123, 255, 0.9);
    }

.StatePlayer .info {
    text-align: center;
    color: #666;
    margin: 5px 0;
}

    .StatePlayer .info .lblBestNumber {
        font-size: 36px;
        font-weight: bold;
        color: white;
        text-shadow: -1px -1px 0 #0f2355, 1px -1px 0 #0f2355, -1px 1px 0 #0f2355, 1px 1px 0 #0f2355, 0 0 2px #0f2355, 2px 2px 2px rgba(0, 0, 0, 0.3);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .StatePlayer .info .lblDate {
        font-size: 16px;
        color: #007bff;
    }

.StatePlayer .player-name {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin-top: 10px;
}

.StatePlayer:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: scaleUp 0.7s forwards;
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}
