/* PUNKTEREKORD CARD */
.record-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(0,0,0,0.4));
    border: 1px solid #ffd700;
    border-radius: var(--radius-medium);
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: goldPulse 4s infinite ease-in-out;
}

.record-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.rc-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px rgba(255,215,0,0.5));
}

.rc-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rc-label {
    font-family: 'Orbitron';
    font-size: 12px;
    color: #ffd700;
    letter-spacing: 2px;
}

.rc-value {
    font-family: 'Orbitron';
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0 0 10px #ffd700;
}

.rc-holder {
    font-size: 14px;
    color: #ccc;
    margin-top: 5px;
}

/* EDIT BUTTON (PENCIL) */
.rc-edit {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    padding: 8px;
    border-radius: 50%;
    font-size: 14px;
    color: #ffd700;
    transition: 0.2s;
    opacity: 0.6;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.rc-edit:hover {
    opacity: 1;
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

@keyframes goldPulse {
    0% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.1); border-color: #b89b00; }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.3); border-color: #ffd700; }
    100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.1); border-color: #b89b00; }
}

/* LIEUTENANT PROTOCOL OVERLAY */
.lieutenant-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 99999; /* Über allem anderen */
    display: none; /* Standardmäßig versteckt */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: not-allowed;
}

.lieutenant-text {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-red-glow);
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 0 0 20px var(--accent-red-glow), 0 0 40px var(--accent-red);
    animation: panicBlink 0.15s infinite alternate; /* Extremes Blinken */
    padding: 20px;
    border: 5px solid var(--accent-red-glow);
    background: rgba(20, 0, 0, 0.9);
}

.lieutenant-sub {
    font-family: 'Aurebesh', 'Orbitron', sans-serif; /* Deine Aurebesh Schrift */
    color: #fff;
    font-size: 1.5rem;
    margin-top: 20px;
    letter-spacing: 3px;
    animation: pulse 1s infinite;
}

@keyframes panicBlink {
    0% { opacity: 1; transform: scale(1); text-shadow: 0 0 10px red; }
    100% { opacity: 0.8; transform: scale(1.02); text-shadow: 0 0 30px red, 0 0 60px white; }
}

/* Spezial-Style für die Admin Zeile in der Tabelle */
.row-admin-protected td {
    background: rgba(255, 0, 0, 0.05) !important;
    border-bottom: 1px solid #500 !important;
    color: #ff5555 !important;
}