/* Editor - HRC Canvas Table Highlighting & Footer Block */

/* Table Top 3 Highlighting - ohne !important fuer Editor-Ueberschreibbarkeit */
.hrc-table tr.row-gold td:not([style*="background"]) {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.05) 100%);
}
.hrc-table tr.row-gold td:first-child {
    border-left-color: #ffd700;
}
.hrc-table tr.row-gold td:not([style*="color"]).col-pos {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.hrc-table tr.row-silver td:not([style*="background"]) {
    background: linear-gradient(90deg, rgba(192, 192, 192, 0.15) 0%, rgba(192, 192, 192, 0.03) 100%);
}
.hrc-table tr.row-silver td:first-child {
    border-left-color: #c0c0c0;
}
.hrc-table tr.row-silver td:not([style*="color"]).col-pos {
    color: #c0c0c0;
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.6);
}

.hrc-table tr.row-bronze td:not([style*="background"]) {
    background: linear-gradient(90deg, rgba(205, 127, 50, 0.15) 0%, rgba(205, 127, 50, 0.03) 100%);
}
.hrc-table tr.row-bronze td:first-child {
    border-left-color: #cd7f32;
}
.hrc-table tr.row-bronze td:not([style*="color"]).col-pos {
    color: #cd7f32;
    text-shadow: 0 0 15px rgba(205, 127, 50, 0.6);
}

/* Footer Block */
.hrc-footer {
    position: relative;
    padding: 15px 40px;
    background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 100%);
    border-top: 2px solid #c41e1e;
}

.hrc-footer .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hrc-footer .footer-date {
    font-family: 'Rajdhani', sans-serif;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    letter-spacing: 1px;
}

.hrc-footer .footer-text {
    font-family: 'Rajdhani', sans-serif;
    color: #c41e1e;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
}