/* ExamMaster Pro - Visual Identity */
:root {
    --sidebar-bg: #1a3a3a; /* Dark Teal */
    --accent-red: #911d1d;  /* Maroon/Red */
    --bg-light: #f4f7f6;
    --text-dark: #333;
    --white: #ffffff;
}

body.emp-portal-body {
    background-color: var(--bg-light);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
}

/* Layout */
.emp-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.emp-sidebar {
    width: 260px;
    background: var(--sidebar-bg);
    color: white;
    transition: all 0.3s;
}

.emp-sidebar .logo-area {
    padding: 20px;
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.emp-sidebar ul { list-style: none; padding: 0; margin: 0; }
.emp-sidebar ul li a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
}

.emp-sidebar ul li a:hover, .emp-sidebar ul li.active a {
    background: rgba(255,255,255,0.05);
    color: white;
    border-left: 4px solid var(--accent-red);
}

/* Top Navigation */
.emp-top-nav {
    background: var(--sidebar-bg);
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    color: white;
}

.emp-btn-dash { background: var(--accent-red); color: white; border: none; padding: 8px 15px; border-radius: 4px; cursor: pointer; }

/* Dashboard Cards */
.emp-stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.emp-stat-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.emp-stat-card .value {
    font-size: 48px;
    font-weight: bold;
    color: #2c3e50;
    display: block;
}

.emp-stat-card .label {
    color: #7f8c8d;
    font-size: 14px;
    margin-top: 10px;
}

/* Tables */
.emp-content-box {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.emp-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.emp-table thead th {
    background: var(--accent-red);
    color: white;
    text-align: left;
    padding: 12px 15px;
    font-size: 13px;
}

.emp-table tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    color: #444;
}

/* Buttons */
.btn-take-paper { background: #27ae60; color: white; border: none; padding: 6px 12px; border-radius: 4px; cursor: pointer; }
.status-pass { background: #27ae60; color: white; padding: 4px 10px; border-radius: 15px; font-size: 11px; }