:root {
    --bg-black: #050505;
    --surface-dark: #111111;
    --border-grey: #2a2a2a;
    --border-light: #444444;
    --text-primary: #ffffff;
    --text-muted: #999999;
    --accent-white: #ffffff;
    --success-green: #00ff66;
    --alert-red: #ff3344;
}

* { 
    box-sizing: border-box; 
    font-family: 'Courier New', Courier, monospace; 
}

body { 
    background-color: var(--bg-black); 
    color: var(--text-primary); 
    margin: 0; 
    padding: 20px; 
}

.terminal-container { 
    max-width: 950px; 
    margin: 0 auto; 
    background: var(--surface-dark); 
    border: 1px solid var(--border-grey); 
    padding: 30px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8); 
}

.header-banner { 
    border-bottom: 2px solid var(--border-light); 
    padding-bottom: 15px; 
    margin-bottom: 25px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    margin-top: 0;
}

input[type="text"], input[type="password"], select, textarea {
    background: var(--bg-black);
    color: var(--text-primary);
    border: 1px solid var(--border-grey);
    padding: 6px;
    border-radius: 3px;
    width: 100%;
}

.claim-input { 
    width: 120px !important; 
    display: inline-block !important; 
    margin-right: 5px; 
}

button, .submit-btn, .btn-primary {
    background-color: #222222;
    color: #ffffff;
    border: 1px solid var(--border-light);
    padding: 8px 16px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background 0.2s;
}

button:hover, .submit-btn:hover, .btn-primary:hover {
    background-color: #333333;
    border-color: #ffffff;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th {
    background-color: #1a1a1a;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-light);
    padding: 10px;
    text-align: left;
}

td {
    border-bottom: 1px solid var(--border-grey);
    padding: 10px;
    color: var(--text-primary);
}

.status-tag { 
    font-weight: bold; 
    text-transform: uppercase; 
    font-size: 11px; 
}

.status-claimed { 
    color: var(--success-green); 
}

.status-rejected { 
    color: var(--alert-red); 
}

.checkbox-container { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    margin-top: 8px; 
    font-size: 11px; 
    color: var(--text-muted); 
}

.checkbox-container input[type="checkbox"] { 
    cursor: pointer; 
    accent-color: #ffffff; 
    width: 15px; 
    height: 15px; 
}

.sync-indicator { 
    font-size: 11px; 
    font-weight: bold; 
    color: var(--text-muted); 
    text-transform: uppercase; 
}

@media print {
    body { background-color: #fff; color: #000; padding: 0; }
    .terminal-container { border: none; box-shadow: none; background: transparent; padding: 0; max-width: 100%; }
    .header-banner { border-bottom: 3px double #000 !important; }
    h1, h2, label, th, td { color: #000 !important; }
    input, select, textarea, .btn-container { display: none !important; }
}
/* Full-screen fixed background video */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
}

/* Semi-transparent tactical overlay to keep text sharp and readable */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(6, 11, 17, 0.82); /* Matches your --dark-background with 82% opacity */
    z-index: -1;
}

/* Ensure your main terminal container sits above the background */
.terminal-container {
    position: relative;
    z-index: 1;
    max-width: 950px;
    margin: 0 auto;
  
    border: 2px solid var(--border-glow);
    padding: 30px;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.15);
}