/* ADD TO YOUR MAIN CSS OR CREATE custom-runes-indicator.css */

/* Custom rune rows have a special indicator */
.runes-table tbody tr.custom-rune-row {
    background: rgba(123, 201, 166, 0.08);
    border-left: 3px solid rgba(123, 201, 166, 0.6);
}

.runes-table tbody tr.custom-rune-row:hover {
    background: rgba(123, 201, 166, 0.15);
}

/* Custom rune badge */
.custom-rune-badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(123, 201, 166, 0.2);
    border: 1px solid rgba(123, 201, 166, 0.4);
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #7bc9a6;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Info banner at top of runes table */
.custom-runes-info-banner {
    background: rgba(123, 201, 166, 0.1);
    border: 1px solid rgba(123, 201, 166, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: #d1d5db;
}

.custom-runes-info-banner .icon {
    color: #7bc9a6;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.custom-runes-info-banner strong {
    color: #7bc9a6;
}

.custom-runes-info-banner em {
    color: #f59e0b;
    font-style: normal;
}

/* Warning in Custom Rune Manager */
.custom-rune-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin-top: 16px;
    font-size: 0.85rem;
    color: #fbbf24;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.custom-rune-warning .warning-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}
