/* Predictions page styles */
.left_border {
    border-left: 1px solid #9a9da233;
}

.prediction-row:hover {
    cursor: pointer;
}

/* Match Blazor's table cell font styling */
#predictionsPageContainer .team-result > tbody > tr > td {
    font-weight: 400;
}

#predictionsPageContainer .team-result .team-result__game {
    font-weight: 400;
}

#predictionsPageContainer .card__header .btn-xs {
    font-size: 10px;
    padding: 2px 8px;
}

/* Locked content styling */
.content-locked {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(30%);
}

/* Teaser table styling */
.prediction-teaser-table {
    position: relative;
}

.prediction-teaser-table tbody {
    filter: blur(4px);
    user-select: none;
}

.prediction-teaser-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 2px solid #f0ad4e;
}

.prediction-teaser-overlay h5 {
    margin-bottom: 1rem;
    color: #333;
    font-weight: bold;
    font-size: 1.4em;
}

.prediction-teaser-overlay p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1.05em;
}

.upgrade-cta-button {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #f0ad4e 0%, #d68910 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(240, 173, 78, 0.3);
}

.upgrade-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 173, 78, 0.4);
    color: white;
    text-decoration: none;
}
