/* Editor - HRC Canvas Table Block */

/* Table Block */
.hrc-table {
    position: relative;
    padding: 20px 40px;
}

.hrc-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 6px;
    font-size: 18px;
}

.hrc-table th {
    background: transparent;
    padding: 12px 20px;
    text-align: left;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    border: none;
}

.hrc-table tbody tr {
    background: linear-gradient(90deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
}

.hrc-table td {
    padding: 14px 20px;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hrc-table td:first-child {
    border-left: 3px solid #c41e1e;
    border-radius: 4px 0 0 4px;
}

.hrc-table td:last-child {
    border-radius: 0 4px 4px 0;
}

/* Table Column Defaults - koennen durch inline-styles ueberschrieben werden */
.hrc-table .col-pos {
    width: 70px;
}

.hrc-table .col-time {
    width: 150px;
}

.hrc-table .col-diff {
    width: 110px;
}

/* Default-Styles nur wenn KEIN inline-style gesetzt ist */
.hrc-table td:not([style*="text-align"]).col-pos {
    text-align: center;
}

.hrc-table td:not([style*="font-family"]).col-pos {
    font-family: 'Orbitron', sans-serif;
}

.hrc-table td:not([style*="font-weight"]).col-pos {
    font-weight: 700;
}

.hrc-table td:not([style*="font-size"]).col-pos {
    font-size: 22px;
}

.hrc-table td:not([style*="font-family"]).col-driver {
    font-family: 'Rajdhani', sans-serif;
}

.hrc-table td:not([style*="font-weight"]).col-driver {
    font-weight: 600;
}

.hrc-table td:not([style*="font-size"]).col-driver {
    font-size: 20px;
}

.hrc-table td:not([style*="text-transform"]).col-driver {
    text-transform: uppercase;
}

.hrc-table td:not([style*="letter-spacing"]).col-driver {
    letter-spacing: 1px;
}

.hrc-table td:not([style*="font-family"]).col-car {
    font-family: 'Teko', sans-serif;
}

.hrc-table td:not([style*="color"]).col-car {
    color: rgba(255, 255, 255, 0.6);
}

.hrc-table td:not([style*="font-size"]).col-car {
    font-size: 16px;
}

.hrc-table td:not([style*="font-family"]).col-time {
    font-family: 'Orbitron', sans-serif;
}

.hrc-table td:not([style*="font-weight"]).col-time {
    font-weight: 700;
}

.hrc-table td:not([style*="font-size"]).col-time {
    font-size: 22px;
}

.hrc-table td:not([style*="color"]).col-time {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.hrc-table td:not([style*="letter-spacing"]).col-time {
    letter-spacing: 1px;
}

.hrc-table td:not([style*="font-family"]).col-diff {
    font-family: 'Rajdhani', sans-serif;
}

.hrc-table td:not([style*="color"]).col-diff {
    color: #ff4444;
}

.hrc-table td:not([style*="font-size"]).col-diff {
    font-size: 16px;
}

.hrc-table td:not([style*="font-weight"]).col-diff {
    font-weight: 500;
}