/**
 * Match Tooltip Styles
 * Styles for the match information tooltip
 */

.match-tooltip {
    position: absolute;
    z-index: 10000;
    background-color: darkslategray;
    color: #fff;
    border: 1px solid #555;
    border-radius: 4px;
    padding: 12px 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 13px;
    line-height: 1.6;
    max-width: 400px;
    min-width: 200px;
    pointer-events: none;
    white-space: normal;
}

.match-tooltip strong {
    font-weight: 600;
    color: #fff;
}

.match-tooltip em {
    font-style: italic;
    color: #ccc;
}

.match-tooltip br {
    margin: 4px 0;
}

.tooltip-loading {
    color: #999;
    font-style: italic;
    padding: 4px 0;
}

.tooltip-error {
    color: #d9534f;
    font-style: italic;
    padding: 4px 0;
}

/* Make result cells appear clickable when they have tooltip data */
.match-result-cell {
    cursor: help;
    position: relative;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .match-tooltip {
        max-width: 280px;
        font-size: 12px;
        padding: 10px 12px;
    }
}

