/* 
 * KLTA Staff Workstation Styles v12.09 🛡️
 */

.klta-staff-dashboard { display: flex; flex-direction: row; gap: 30px; text-align: left; align-items: flex-start; }

.staff-section { 
    background: #ffffff; border-radius: 20px; padding: 40px; 
    border: 1px solid #cbd5e1; box-shadow: 0 10px 25px rgba(0, 43, 92, 0.05); 
    position: relative; 
}

/* 🚪 LOGOUT BUTTON */
.staff-logout-btn {
    position: absolute; top: 30px; right: 40px; background: #dc2626; color: white !important;
    padding: 10px 18px; border-radius: 8px; font-size: 13px; font-weight: 900;
    text-decoration: none; transition: 0.3s; z-index: 10;
}
.staff-logout-btn:hover { background: #b91c1c; transform: translateY(-2px); }

.staff-card-title { margin: 0; font-weight: 900; color: #1e293b; font-size: 28px; letter-spacing: -0.5px; }

/* 🛡️ OFFICER IDENTITY */
.staff-header-flex { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; border-bottom: 2px solid #f1f5f9; padding-bottom: 25px; }
.officer-avatar { width: 70px; height: 70px; background: #1e293b; color: #fcc200; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 28px; font-weight: 900; }
.officer-badge { background: #f1f5f9; color: #1e293b; padding: 6px 15px; border-radius: 50px; font-size: 11px; font-weight: 800; border: 1px solid #cbd5e1; display: inline-flex; align-items: center; gap: 8px; }

/* 📊 STAFF DATA GRID */
.staff-meta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.staff-info-box label { display: block; font-size: 10px; text-transform: uppercase; color: #64748b; font-weight: 900; margin-bottom: 8px; letter-spacing: 1px; }
.staff-info-data { margin: 0; font-weight: 700; color: #1e293b; font-size: 16px; }

.staff-input-main { width: 100%; padding: 14px; border: 1px solid #e2e8f0; border-radius: 10px; font-size: 15px; font-weight: 600; box-sizing: border-box; }
.staff-action-btn { background: #002b5c; color: white; padding: 14px 25px; border-radius: 10px; font-weight: 900; border: none; cursor: pointer; transition: 0.3s; font-size: 14px; }

@media (max-width: 1024px) {
    .klta-staff-dashboard { flex-direction: column; }
}

@media (max-width: 900px) { 
    .staff-meta-grid { grid-template-columns: 1fr; } 
    .staff-logout-btn { position: static; display: block; width: fit-content; margin-bottom: 20px; }
}