/* Tournament Navigation Buttons Styles */

.tour-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    margin: 15px auto;
    color: #f0e7d4;
    text-decoration: none;
    background: #212844;
    border: 1px solid #f0e7d4;
    border-radius: 8px;
    transition: 0.4s;
}

.tour-title {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: bold;
    transition: 0.4s;
}

.tour-date {
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: bold;
    opacity: 0.8;
}

.tour-divider {
    width: 50%;
    border: 0;
    border-top: 1px solid #f0e7d4;
    margin: 15px auto;
    transition: 0.4s;
}

.tour-winners {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.tour-winner-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-family: inherit;
}

.tour-stats-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-family: inherit;
}

.tour-medal {
    filter: grayscale(0%);
    opacity: 1;
    transition: 0.4s;
}

.tour-nav-btn:hover {
    box-shadow: 0 0 20px rgba(240, 231, 212, 0.6);
}

.tour-nav-btn:hover .tour-medal {
    transform: scale(1.1);
}

.tour-nav-btn-disabled {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    margin: 15px auto;
    color: #6b6b6b;
    text-decoration: none;
    background: #212844;
    border: 1px solid #353f49;
    border-radius: 8px;
    transition: 0.4s;
    opacity: 0.75;
    cursor: not-allowed;
    pointer-events: none;
}

.tour-nav-btn-disabled .tour-medal {
    filter: grayscale(100%);
    opacity: 0.3;
}

