/* TV1 Specific Styles - Results Display */

.rankings-container {
    display: flex;
    flex-direction: column;
}

/* Grid para as colunas serem mais legíveis */
.ranking-table tbody tr {
    display: grid;
    grid-template-columns: 60px 80px 1fr 120px 80px 120px 120px 120px 100px;
    gap: 10px;
    padding: 6px 8px;
    align-items: center;
}

.ranking-table tbody tr td {
    padding: 0;
}

/* Destaque de posições importantes */
.ranking-table tbody tr.position-1 {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.2), transparent);
    border-left: 5px solid var(--flag-green);
}

.ranking-table tbody tr.position-1 .col-pos {
    color: var(--flag-green);
    font-size: 1.3em;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.ranking-table tbody tr.position-2 {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.15), transparent);
    border-left: 5px solid #3b82f6;
}

.ranking-table tbody tr.position-2 .col-pos {
    color: #3b82f6;
    font-size: 1.2em;
}

.ranking-table tbody tr.position-3 {
    background: linear-gradient(90deg, rgba(217, 119, 6, 0.15), transparent);
    border-left: 5px solid #d97706;
}

.ranking-table tbody tr.position-3 .col-pos {
    color: #d97706;
    font-size: 1.2em;
}

/* Highlight de mudanças */
.ranking-table tbody tr.new-position td {
    animation: highlightChange 1s ease-out;
}

@keyframes highlightChange {
    0% {
        background-color: rgba(255, 255, 0, 0.3);
    }
    100% {
        background-color: transparent;
    }
}

/* Time formatting */
.col-time,
.col-best,
.col-last {
    font-family: 'Monaco', 'Courier New', monospace;
    font-weight: 700;
    letter-spacing: 1px;
}

.col-time {
    color: #60a5fa;
}

.col-best {
    color: #4ade80;
}

.col-last {
    color: #fbbf24;
}

/* Gap display */
.col-gap {
    font-family: 'Monaco', 'Courier New', monospace;
    font-weight: 700;
}

.col-gap.leader {
    color: var(--flag-green);
}

.col-gap.close {
    color: var(--flag-red);
}

.col-gap.normal {
    color: var(--flag-yellow);
}

/* Category badges */
.col-category {
    background: rgba(30, 64, 175, 0.3);
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 0.72em;
    font-weight: 600;
}

/* Pit stop indicator */
.pit-stop-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--flag-yellow);
    margin-left: 5px;
    animation: pulse 1s infinite;
}

/* Info panel for TV1 */
.panel-section:nth-child(1) {
    order: 1;
}

.panel-section:nth-child(2) {
    order: 2;
}

.panel-section:nth-child(3) {
    order: 3;
}

.info-panel {
    width: 220px;
    gap: 10px;
    padding: 12px;
}

.panel-section {
    padding: 10px;
}

.panel-section h3 {
    font-size: 0.88em;
    margin-bottom: 8px;
}

.info-item {
    margin-bottom: 6px;
}

.info-item .value {
    font-size: 0.9em;
}
