* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #0f1923;
    color: #fff;
    min-height: 100vh;
}

a { color: #ff9800; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Topbar ─────────────────────────────────────────────── */
.topbar {
    background: #1a2535;
    border-bottom: 2px solid #ff9800;
    padding: 0 24px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.topbar-brand {
    font-size: 18px;
    font-weight: 700;
    color: #ff9800;
    white-space: nowrap;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.topbar-right span {
    color: #ccc;
    font-size: 13px;
    padding: 6px 10px;
}

.topbar-right a {
    color: #fff;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 5px;
    background: rgba(255,255,255,0.08);
    transition: background 0.2s;
    white-space: nowrap;
}

.topbar-right a:hover { background: #ff9800; text-decoration: none; }

.topbar-logout {
    background: rgba(211,47,47,0.3) !important;
}
.topbar-logout:hover { background: #d32f2f !important; }

/* ── Login ──────────────────────────────────────────────── */
.login-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.login-box {
    width: 100%;
    max-width: 400px;
    background: #1a2535;
    border: 1px solid #2a3a50;
    padding: 40px 36px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.login-logo { font-size: 56px; margin-bottom: 12px; }

.login-box h2 { font-size: 22px; margin-bottom: 6px; }

.login-sub { color: #888; font-size: 13px; margin-bottom: 24px; }

.input-group { position: relative; margin-bottom: 14px; }

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
}

input {
    width: 100%;
    padding: 12px 14px 12px 44px;
    background: #0f1923;
    border: 1px solid #2a3a50;
    border-radius: 7px;
    color: #fff;
    font-size: 14px;
}

input:focus { outline: none; border-color: #ff9800; }

button {
    width: 100%;
    padding: 13px;
    background: #ff9800;
    border: none;
    border-radius: 7px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    margin-top: 6px;
}

button:hover { background: #e68900; }
button:active { transform: scale(0.98); }
button:disabled { background: #444; cursor: not-allowed; transform: none; }

/* ── Alerts ─────────────────────────────────────────────── */
.alert-success, .alert-error {
    padding: 12px 16px;
    border-radius: 7px;
    font-size: 14px;
    margin-bottom: 18px;
}
.alert-success { background: #1b4d1e; border: 1px solid #2e7d32; color: #a5d6a7; }
.alert-error   { background: #4d1b1b; border: 1px solid #c62828; color: #ef9a9a; }

/* ── Admin Container ────────────────────────────────────── */
.admin-container {
    max-width: 1300px;
    margin: 28px auto;
    padding: 0 20px;
}

.page-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.page-sub {
    color: #888;
    font-size: 13px;
    margin-bottom: 22px;
}

/* ── Section Box (employees page) ──────────────────────── */
.section-box {
    background: #1a2535;
    border: 1px solid #2a3a50;
    border-radius: 10px;
    padding: 22px 24px;
    margin-bottom: 24px;
}

.section-box-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #ff9800;
}

/* ── Add Employee Form ──────────────────────────────────── */
.add-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 14px;
    align-items: end;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label { font-size: 12px; color: #aaa; font-weight: 600; }

.form-field input {
    padding: 10px 12px;
    background: #0f1923;
    border: 1px solid #2a3a50;
    border-radius: 7px;
    color: #fff;
    font-size: 14px;
}

.form-field input:focus { border-color: #ff9800; outline: none; }

.btn-add {
    padding: 10px 18px;
    background: #ff9800;
    border: none;
    border-radius: 7px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    width: auto;
    margin: 0;
    transition: background 0.2s;
}
.btn-add:hover { background: #e68900; }

/* ── Table ──────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.data-table th {
    background: #0f1923;
    color: #ff9800;
    padding: 12px 14px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid #2a3a50;
    white-space: nowrap;
}

.data-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #1e2d3d;
    vertical-align: middle;
}

.data-table tr:hover td { background: rgba(255,255,255,0.02); }

.table-name-cell { display: flex; align-items: center; gap: 10px; }

.count-badge {
    background: rgba(255,152,0,0.15);
    color: #ff9800;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-left: 8px;
}

.log-badge {
    background: rgba(255,152,0,0.15);
    color: #ff9800;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ── Action Buttons ─────────────────────────────────────── */
.btn-view, .btn-delete {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 4px;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s;
    white-space: nowrap;
}

button.btn-delete {
width: auto;
}
.report-card {
    z-index: 99;
}
.btn-view { background: rgba(33,150,243,0.2); color: #64b5f6; }
.btn-view:hover { background: rgba(33,150,243,0.4); text-decoration: none; }

.btn-delete { background: rgba(211,47,47,0.2); color: #ef9a9a; }
.btn-delete:hover { background: rgba(211,47,47,0.4); text-decoration: none; }

/* ── Employee Cards (dashboard) ─────────────────────────── */
.employee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.emp-card {
    background: #1a2535;
    border: 1px solid #2a3a50;
    border-radius: 10px;
    padding: 18px;
}

.emp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.emp-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ff9800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    color: #fff;
}

.emp-avatar.small {
    width: 36px;
    height: 36px;
    font-size: 16px;
}

.emp-name { font-size: 15px; font-weight: 600; }
.emp-email { font-size: 12px; color: #888; margin-top: 2px; }

.emp-section-label {
    font-size: 12px;
    color: #ff9800;
    font-weight: 600;
    margin: 12px 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.emp-photo {
    width: 100%;
    border-radius: 7px;
    display: block;
    cursor: pointer;
}

.emp-address { font-size: 12px; color: #aaa; line-height: 1.5; margin-bottom: 8px; }

.emp-map {
    width: 100%;
    height: 180px;
    border-radius: 7px;
    margin-bottom: 8px;
    z-index: 99;
}

.emp-time { font-size: 11px; color: #666; }

.emp-no-data {
    background: #0f1923;
    border: 1px dashed #2a3a50;
    padding: 16px;
    border-radius: 7px;
    text-align: center;
    color: #555;
    font-size: 13px;
    margin-bottom: 8px;
}

.emp-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #2a3a50;
}

/* ── Reports ────────────────────────────────────────────── */
.filter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-form select {
    padding: 9px 14px;
    background: #1a2535;
    border: 1px solid #2a3a50;
    border-radius: 7px;
    color: #fff;
    font-size: 14px;
    min-width: 200px;
}

.btn-filter {
    padding: 9px 18px;
    background: #ff9800;
    border: none;
    border-radius: 7px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    width: auto;
    margin: 0;
    transition: background 0.2s;
}
.btn-filter:hover { background: #e68900; }

.btn-clear {
    padding: 9px 16px;
    background: #2a3a50;
    border-radius: 7px;
    color: #ccc;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}
.btn-clear:hover { background: #3a4a60; text-decoration: none; }

.report-grid { display: flex; flex-direction: column; gap: 18px; }

.report-card {
    background: #1a2535;
    border: 1px solid #2a3a50;
    border-radius: 10px;
    padding: 18px;
}

.report-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #2a3a50;
}

.report-id {
    margin-left: auto;
    background: rgba(255,152,0,0.15);
    color: #ff9800;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.report-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.report-photo { width: 100%; border-radius: 7px; display: block; cursor: pointer; }

.report-coords { font-size: 11px; color: #666; margin-bottom: 8px; }

.report-map { width: 100%; height: 220px; border-radius: 7px; }

.emp-time { font-size: 12px; color: #888; }

/* ── Empty / No data ────────────────────────────────────── */
.empty-box {
    background: #1a2535;
    border: 1px dashed #2a3a50;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* ── Employee Dashboard ─────────────────────────────────── */
.emp-container {
    max-width: 700px;
    margin: 28px auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.emp-card h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #ff9800;
}

video {
    width: 100%;
    border-radius: 8px;
    display: block;
    background: #000;
    margin-bottom: 10px;
}

canvas { display: none; }

.btn-row {
    display: flex;
    gap: 10px;
}

.btn-row button {
    flex: 1;
    padding: 11px;
    font-size: 14px;
    margin: 0;
}

.btn-row button:last-child {
    background: #2a3a50;
    color: #ccc;
}
.btn-row button:last-child:hover { background: #3a4a60; }

.info-box {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 7px;
    font-size: 13px;
    line-height: 1.6;
}

.info-box.success { background: #1b4d1e; border: 1px solid #2e7d32; color: #a5d6a7; }
.info-box.error   { background: #4d1b1b; border: 1px solid #c62828; color: #ef9a9a; }

.checklist {
    background: #0f1923;
    border: 1px solid #2a3a50;
    border-radius: 7px;
    padding: 12px 14px;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chk-item { font-size: 13px; color: #888; }
.chk-item.done { color: #a5d6a7; }

/* ── Manual Coordinates ────────────────────────────────── */
#manual-inputs {
    margin-top: 14px;
    padding: 14px;
    background: #0f1923;
    border: 1px solid #2a3a50;
    border-radius: 8px;
}

.manual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.manual-grid .form-field input {
    width: 100%;
    padding: 10px 12px;
    background: #1a2535;
    border: 1px solid #2a3a50;
    border-radius: 7px;
    color: #fff;
    font-size: 14px;
}
.manual-grid .form-field input:focus { border-color: #ff9800; outline: none; }

.manual-preset {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.manual-preset .form-field select {
    width: 100%;
    padding: 10px 12px;
    background: #1a2535;
    border: 1px solid #2a3a50;
    border-radius: 7px;
    color: #fff;
    font-size: 13px;
}
.manual-preset .form-field select:focus { border-color: #ff9800; outline: none; }

.manual-or {
    text-align: center;
    color: #555;
    font-size: 12px;
    margin: 10px 0;
    position: relative;
}
.manual-or::before, .manual-or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 38%;
    height: 1px;
    background: #2a3a50;
}
.manual-or::before { left: 0; }
.manual-or::after  { right: 0; }

@media (max-width: 480px) {
    .manual-grid { grid-template-columns: 1fr; }
    .manual-preset { grid-template-columns: 1fr; }
}

/* ── Employee Route Map ────────────────────────────────── */
.emp-live-map {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    margin-top: 12px;
}

.emp-history-map {
    width: 100%;
    height: 280px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.emp-route-sub {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
}

.emp-route-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
}

.btn-fullmap-emp {
    display: inline-block;
    padding: 7px 14px;
    background: rgba(255,152,0,0.15);
    color: #ff9800;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,152,0,0.3);
    transition: background 0.2s;
}
.btn-fullmap-emp:hover { background: #ff9800; color: #fff; text-decoration: none; }

/* ── Route Map Section ─────────────────────────────────── */
.route-map-section {
    background: #1a2535;
    border: 1px solid #2a3a50;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 24px;
}

.route-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid #2a3a50;
    flex-wrap: wrap;
    gap: 10px;
}

.route-map-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.route-point-count {
    background: rgba(255,152,0,0.15);
    color: #ff9800;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.btn-fullmap {
    padding: 7px 14px;
    background: rgba(255,152,0,0.15);
    color: #ff9800;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,152,0,0.3);
    transition: background 0.2s;
    white-space: nowrap;
}
.btn-fullmap:hover { background: #ff9800; color: #fff; text-decoration: none; }

.route-map {
    width: 100%;
    height: 420px;
}

.btn-view-route {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 12px;
    background: rgba(255,152,0,0.15);
    color: #ff9800;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,152,0,0.2);
    transition: background 0.2s;
}
.btn-view-route:hover { background: #ff9800; color: #fff; text-decoration: none; }

/* ── Lightbox ───────────────────────────────────────────── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.8);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}

.report-photo { cursor: pointer; }

/* ── Tracking subbar ────────────────────────────────────── */
.track-subbar {
    background: #111e2d;
    border-bottom: 1px solid #2a3a50;
    padding: 0 20px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.track-brand-sub { font-size: 14px; font-weight: 600; color: #ff9800; }

.track-filter { display: flex; gap: 8px; align-items: center; }

.track-filter select {
    padding: 6px 12px;
    background: #0f1923;
    border: 1px solid #2a3a50;
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
}

.track-filter button {
    padding: 6px 14px;
    background: #ff9800;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    width: auto;
    margin: 0;
}

.track-filter a.clear-btn {
    padding: 6px 12px;
    background: #2a3a50;
    border-radius: 6px;
    color: #ccc;
    font-size: 13px;
    text-decoration: none;
}

/* ── Edit button ───────────────────────────────────────── */
.btn-edit {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 4px;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
    white-space: nowrap;
    background: rgba(76,175,80,0.2);
    color: #81c784;
    width: auto;
    margin-top: 0;
}
.btn-edit:hover { background: rgba(76,175,80,0.4); }

.action-cell { white-space: nowrap; }

/* ── Modal ──────────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-box {
    background: #1a2535;
    border: 1px solid #2a3a50;
    border-radius: 12px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid #2a3a50;
}

.modal-header h3 { font-size: 16px; font-weight: 600; margin: 0; }

.modal-close {
    background: none;
    border: none;
    color: #888;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    width: auto;
    margin: 0;
    line-height: 1;
}
.modal-close:hover { background: rgba(255,255,255,0.1); color: #fff; }

.modal-body {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal-footer {
    padding: 16px 22px;
    border-top: 1px solid #2a3a50;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-cancel {
    padding: 10px 20px;
    background: #2a3a50;
    border: none;
    border-radius: 7px;
    color: #ccc;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: auto;
    margin: 0;
}
.btn-cancel:hover { background: #3a4a60; }

.btn-save {
    padding: 10px 20px;
    background: #ff9800;
    border: none;
    border-radius: 7px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    width: auto;
    margin: 0;
}
.btn-save:hover { background: #e68900; }

.label-hint { font-size: 11px; color: #666; font-weight: 400; }

/* ── Employee Profile ───────────────────────────────────── */
.profile-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.profile-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ff9800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.profile-name  { font-size: 18px; font-weight: 700; }
.profile-email { font-size: 13px; color: #888; margin-top: 3px; }
.profile-since { font-size: 12px; color: #555; margin-top: 3px; }

.profile-stats {
    display: flex;
    gap: 16px;
    padding-top: 14px;
    border-top: 1px solid #2a3a50;
}

.profile-stat {
    background: #0f1923;
    border: 1px solid #2a3a50;
    border-radius: 8px;
    padding: 12px 20px;
    text-align: center;
    min-width: 100px;
}

.profile-stat-num   { font-size: 24px; font-weight: 700; color: #ff9800; }
.profile-stat-label { font-size: 12px; color: #888; margin-top: 2px; }

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.profile-divider {
    font-size: 13px;
    font-weight: 600;
    color: #ff9800;
    padding: 10px 0 4px;
    border-top: 1px solid #2a3a50;
    margin-top: 4px;
}

.profile-form .form-field input {
    width: 100%;
    padding: 11px 14px;
    background: #0f1923;
    border: 1px solid #2a3a50;
    border-radius: 7px;
    color: #fff;
    font-size: 14px;
}
.profile-form .form-field input:focus { border-color: #ff9800; outline: none; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
    .topbar { height: auto; padding: 8px 12px; flex-wrap: wrap; gap: 6px; }
    .topbar-brand { font-size: 15px; }
    .topbar-right { gap: 4px; flex-wrap: wrap; }
    .topbar-right a, .topbar-right span { font-size: 12px; padding: 5px 8px; }

    .add-form-grid { grid-template-columns: 1fr; }

    .employee-grid { grid-template-columns: 1fr; }

    .report-body { grid-template-columns: 1fr; }

    .route-map { height: 260px; }

    .emp-container { margin: 12px auto; padding: 0 12px; }

    .track-subbar { height: auto; padding: 8px 12px; }
    .track-filter { flex-wrap: wrap; gap: 6px; }
    .track-filter select, .track-filter input[type="date"] { font-size: 12px; padding: 5px 8px; min-width: 0; flex: 1; }

    .data-table { font-size: 12px; }
    .data-table th, .data-table td { padding: 8px 8px; font-size: 12px; }

    .page-title { font-size: 18px; }
    .section-box { padding: 14px; }
    .emp-card { padding: 12px; }
    .admin-container { padding: 0 12px; margin: 16px auto; }

    .filter-form { gap: 8px; }
    .filter-form select { min-width: 0; flex: 1; font-size: 13px; }

    .report-card { padding: 14px; }
    .report-map { height: 180px; }

    .emp-history-map { height: 220px; }
    .emp-live-map { height: 180px; }

    .profile-stats { flex-wrap: wrap; gap: 10px; }
    .profile-stat { min-width: 80px; padding: 10px 14px; }
    .profile-stat-num { font-size: 20px; }
}

@media (max-width: 480px) {
    .topbar-brand { font-size: 14px; }
    .topbar-right a, .topbar-right span { font-size: 11px; padding: 4px 7px; }
    .login-box { padding: 24px 16px; }
    .login-box h2 { font-size: 18px; }
    .admin-container { padding: 0 10px; }
    .section-box { padding: 12px; }
    .emp-card { padding: 12px; }
    .emp-card h2 { font-size: 14px; }
    .page-title { font-size: 16px; }
    .data-table th, .data-table td { padding: 7px 6px; font-size: 11px; }
    .btn-view, .btn-delete, .btn-edit { font-size: 11px; padding: 4px 8px; }
    .route-map { height: 220px; }
    .report-map { height: 160px; }
    .emp-history-map { height: 200px; }
    .emp-live-map { height: 160px; }
    .btn-click-me { font-size: 16px !important; padding: 14px 32px !important; }
}