:root { --bg:#ffffff; --card:#ffffff; --text:#111184; --muted:#6b7280; --primary:#111184; --accent:#0b6b3a; --danger:#ef4444; }
* { box-sizing:border-box; }
/* Base typography and design tokens */
:root { --space-xs:6px; --space-sm:10px; --space-md:16px; --space-lg:24px; --radius-sm:6px; --radius-md:12px; --shadow-sm: 0 6px 18px rgba(11,37,69,0.06); --shadow-lg: 0 14px 32px rgba(11,37,69,0.12); }
body { margin:0; font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif; background:var(--bg); color:var(--text); -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }
.topbar { display:flex; justify-content:space-between; align-items:center; padding:12px 20px; background:var(--primary); border-bottom:1px solid rgba(11,37,69,0.12);}
.brand { font-weight:500; color:var(--primary); }
.container { max-width:1100px; margin: 20px auto; padding: 0 16px; }
.grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap:16px; }
.card { background:var(--card); padding:16px; border-radius:10px; border:1px solid #374151;  }
.auth-card { max-width:400px; margin:40px auto; background:var(--card); padding:24px; border-radius:5px; border:1px solid #374151; margin-top: 100px;}
label { display:block; margin:10px 0; }
input, select, textarea { width:100%; padding:10px; border-radius:8px; border:1px solid #cbd5e1; background:#ffffff; color:var(--text); }
button, .btn { background:var(--accent); color:#ffffff; border:none; padding:10px 14px; border-radius:8px; cursor:pointer; font-weight:500; }
button.danger { background:var(--danger); color:white; }
.inline-form { display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.table { width:100%; border-collapse:collapse; }
.table th, .table td { border-bottom:1px solid #374151; padding:8px; text-align:left; }
.error { background:#3f1d1d; border:1px solid #b91c1c; color:#fecaca; padding:8px; border-radius:6px; margin:8px 0; }
.success { background:#0f3d2e; border:1px solid #14532d; color:#bbf7d0; padding:8px; border-radius:6px; margin:8px 0; }
.kb-list { list-style:none; padding:0; margin:0; }
.kb-list li { border-bottom:1px solid #374151; padding:10px 0; }
.filters a { color:var(--muted); margin-right:8px; text-decoration:none; }
.filters a:hover { color:var(--primary); }
/* Layout */
.layout {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 240px;
  background: var(--primary);
  color: #fff;
  padding: 20px;
  margin-top: 64px;
  transition: transform .18s ease;
}

.sidebar h3 {
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 1px solid #555;
  padding-bottom: 5px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin: 12px 0;
}

.sidebar ul li a {
  color: #ddd;
  text-decoration: none;
  display: block;
  padding: 8px;
  border-radius: 4px;
}

.sidebar ul li a:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

/* Mobile menu toggle (hidden on desktop) */
.menu-toggle { display:none; background:transparent; border:none; color:#fff; font-size:20px; padding:8px; cursor:pointer; }

@media (max-width: 900px) {
  .menu-toggle { display:inline-flex; }
  .sidebar { position: fixed; top: 64px; left: 0; height: calc(100% - 64px); transform: translateX(-110%); z-index: 1200; }
  body.sidebar-open .sidebar { transform: translateX(0); }
  .dashboard-content { margin-left: 0; }
}

/* Main content */
.dashboard-content {
  flex: 1;
  padding: 30px;
  background: var(--bg);
  color: var(--text);
}

/* Table styling */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.styled-table th, .styled-table td {
  padding: 12px 15px;
  text-align: left;
  color: rgb(2, 2, 48);
  background-color: #ffffff;
}

.styled-table thead {
  background-color: var(--primary);
  color: #fff;
}

.styled-table tr:nth-child(even) {
  background-color: #f3f3f3;
}

/* Buttons */
.btn {
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.18s, transform 0.12s;
  background: var(--accent);
  color: #fff;
  border: none;
}

.btn-success {
  background-color: var(--accent);
  color: #fff;
}

.btn-danger {
  background-color: #dc3545;
  color: #fff;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--primary);
  color: #fff;
}

.badge-secondary {
  background: #6c757d;
  color: #fff;
}
.btn-sm {
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 3px;
}
/* Status badges */
.badge-open {
  background-color: #17a2b8; /* teal */
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.badge-inprogress {
  background-color: #ffc107; /* amber */
  color: #212529;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.badge-closed {
  background-color: #dc3545; /* red */
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}

/* Dashboard-specific badge styling to ensure role/status is visible */
.dashboard-content .card .badge {
  background: #001f4d !important;
  color: #ffffff !important;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 4px 14px rgba(0,31,77,0.12);
}

/* Strong, high-specificity rule for role badge to prevent accidental overrides */
body .dashboard-content .card .role-badge {
  background: #0b66b2 !important;
  color: #ffffff !important;
  padding: 6px 12px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  display: inline-block !important;
  box-shadow: 0 6px 20px rgba(11,102,178,0.16) !important;
}

/* Slightly different style for status badge */
body .dashboard-content .card .status-badge {
  background: #16a34a !important;
  color: #fff !important;
  padding: 6px 10px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
}

.filter-bar {
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-bar label {
  font-weight: 500;
  color: #ccc;
}

.filter-bar select {
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid #cbd5e1;
  background-color: #fff;
  color: var(--text);
  font-size: 14px;
}
/* Topbar */
.topbar {
  background-color: var(--primary);
  color: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  border-bottom: 1px solid rgba(11,37,69,0.12);
}
.topbar-left { font-weight: 500; font-size: 16px; }
.topbar-right { color: #ccc; }

/* Header / topbar user-info */
.topbar .user-info { display:flex; align-items:center; gap:10px; margin-left:12px; }
.topbar .user-info .user-name { color:#ffffff; font-weight:600; font-size:14px; }
.topbar .user-info .role-badge {
  background: rgba(255,255,255,0.12) !important;
  color: #ffffff !important;
  padding: 6px 10px !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18) !important;
}

@media (max-width:900px) {
  .topbar .user-info { display:none; }
}

/* Topbar nav styling */
.topbar nav { display:flex; gap:8px; align-items:center; }
.topbar nav a { color: #fff; text-decoration: none; padding:8px 12px; border-radius:9999px; background: transparent; transition: background .12s, transform .12s; font-weight:600; }
.topbar nav a:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.brand img { height:40px; width:auto; vertical-align:middle; }

/* Layout */
.layout { display: flex; min-height: calc(100vh - 48px); }

/* Sidebar */
.sidebar {
  width: 220px; background: var(--primary); color: #fff; padding: 20px;
}
.sidebar h3 {
  margin-bottom: 15px; font-size: 18px; border-bottom: 1px solid #555; padding-bottom: 5px;
}
.sidebar ul { list-style: none; padding: 0; }
.sidebar ul li { margin: 12px 0; }
.sidebar ul li a {
  color: #ddd; text-decoration: none; display: flex; align-items: center; gap: 8px;
  padding: 8px; border-radius: 4px; transition: background 0.3s;
}
.sidebar ul li a:hover { background: #495057; color: #fff; }

/* Main content */
.dashboard-content { flex: 1; padding: 30px; background: var(--bg); color: var(--text); }

/* Cards */
.card {
  background: black;
  color: white;
  padding: 20px;
  margin: 16px 0;
  border-radius: 12px;
  border: 1px solid rgba(11,37,69,0.06);
  box-shadow: 0 6px 18px rgba(11,37,69,0.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgba(11,37,69,0.12); }
.card h2, .card h3 { margin-top: 0; color: var(--text); }
.card p { color: rgba(11,37,69,0.85); }

/* Stats */
.stats-grid { display: flex; gap: 20px; margin-bottom: 20px; }
.stat-card {
  background: #fff; color: black; padding: 20px; border-radius: 8px; flex: 1; text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.stat-card h4 { margin-bottom: 10px; font-size: 20px; }
.stat-card p { font-size: 30px; margin: 0;}

/* Table */
.styled-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.styled-table th, .styled-table td { padding: 12px 15px; text-align: left; }
.styled-table thead { background-color: #2a2a2a; color: #fff; }
.styled-table tbody tr { border-bottom: 1px solid #2a2a2a; }
.styled-table tr:nth-child(even) { background-color: #171717; }

/* Status row backgrounds (optional subtle tint) */
.styled-table tr.status-open { background-color: #132b31; }
.styled-table tr.status-in_progress { background-color: #2b2b13; }
.styled-table tr.status-closed { background-color: #311313; }

/* Buttons */
.btn {
  padding: 6px 12px; border-radius: 4px; text-decoration: none; font-size: 14px; display: inline-block;
  transition: background 0.3s, transform 0.2s;
}
.btn:hover { transform: scale(1.05); }
.btn-success { background-color: #28a745; color: #fff; }
.btn-danger { background-color: #dc3545; color: #fff; }
.btn-secondary { background-color: #6c757d; color: #fff; }
.btn-sm { padding: 4px 8px; font-size: 12px; border-radius: 3px; }

/* Badges */
.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--primary) !important;
  color: #ffffff !important;
  font-size: 12px;
}
.badge-secondary { background: #6c757d; }
.badge-open { background-color: #17a2b8; color: #fff; padding: 4px 8px; border-radius: 4px; font-size: 12px; }
.badge-inprogress { background-color: #ffc107; color: #212529; padding: 4px 8px; border-radius: 4px; font-size: 12px; }
.badge-closed { background-color: #dc3545; color: #fff; padding: 4px 8px; border-radius: 4px; font-size: 12px; }

/* Forms */
.ticket-form { margin-bottom: 20px; }
.ticket-form label { display: block; margin: 10px 0; }
.ticket-form input, .ticket-form textarea {
  width: 100%; padding: 10px; margin-top: 4px; border: 1px solid #333; border-radius: 4px;
  background: #0f0f0f; color: #eaeaea;
}
.ticket-form textarea { min-height: 120px; }

/* Filter bar */
.filter-bar { margin: 15px 0; display: flex; align-items: center; gap: 10px; }
.filter-bar label { font-weight: 500; color: #ccc; }
.filter-bar select {
  padding: 6px 10px; border-radius: 4px; border: 1px solid #555; background-color: #222; color: #fff; font-size: 14px;
}

/* Footer */
.footer {
  text-align: center; padding: 15px; background: #1f1f1f; color: #aaa; font-size: 13px;
}
/* Attendance table row highlights */
.styled-table tr.status-present { background-color: #132b31; }
.styled-table tr.status-late { background-color: #2b2b13; }
.styled-table tr.status-absent { background-color: #311313; }

/* Attendance badges */
.badge-open {
  background-color: #28a745;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}
.badge-inprogress {
  background-color: #ffc107;
  color: #212529;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}
.badge-closed {
  background-color: #dc3545;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}
/* Attendance actions */
.attendance-actions {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
}

/* Row highlights */
.styled-table tr.status-present { background-color: #132b31; }
.styled-table tr.status-late { background-color: #2b2b13; }
.styled-table tr.status-absent { background-color: #311313; }

/* Badges */
.badge-open {
  background-color: #28a745;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}
.badge-inprogress {
  background-color: #ffc107;
  color: #212529;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}
.badge-closed {
  background-color: #dc3545;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}
.message-form {
  margin-bottom: 20px;
}

.message-form textarea {
  width: 100%;
  min-height: 80px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #0f0f0f;
  color: #eaeaea;
  margin-bottom: 10px;
}

.message-wall {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.message {
  background: #1e1e1e;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.message-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 8px;
}

.message-body {
  font-size: 14px;
  color: #eaeaea;
}
.message-form {
  margin-bottom: 20px;
}

.message-form select,
.message-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #0f0f0f;
  color: #eaeaea;
}

.message-form textarea {
  min-height: 80px;
  margin-bottom: 10px;
}

.message-wall {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.message {
  background: #1e1e1e;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.message-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 8px;
}

.message-body {
  font-size: 14px;
  color: #eaeaea;
}
.kb-form {
  margin-bottom: 20px;
}
.kb-form input, .kb-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #0f0f0f;
  color: #eaeaea;
}
.kb-form textarea { min-height: 120px; }

.kb-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.kb-article {
  background: #1e1e1e;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.kb-article h3 { margin-top: 0; }
.kb-article small { color: #aaa; display: block; margin-bottom: 8px; }
.btn-info {
  background-color: #17a2b8;
  color: #fff;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.btn-info:hover {
  background-color: #138496;
}


.sidebar {
  position: fixed;
  top: 20px;       /* below the header */
  left: 0;
  height: 85%;
  width: 200px;    /* adjust width */
  background: var(--primary);
  color: #fff;
  overflow-y: auto; /* scroll inside sidebar if content is long */
}
.dashboard-content {
  margin-left: 200px; /* push content to the right of sidebar */
}
.topbar {
  position: fixed;       /* keeps it in place */
  top: 0;                /* stick to the top */
  left: 0;
  width: 100%;           /* span full width */
  background: var(--primary);
  color: #fff;
  padding: 10px;
  z-index: 1000;         /* ensures it stays above other elements */
}
.dashboard-content {
  margin-top: 70px; /* adjust based on header height */
  padding: 20px;
}
/* Assign Tasks Page Styles */
.assign-task-container {
  max-width: 700px;
  margin: 30px auto;
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.assign-task-container h2 {
  text-align: center;
  color: #007bff;
  margin-bottom: 20px;
  margin-left: 70px;
}

.assign-task-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-left: 100px;
}

.assign-task-form label {
  font-weight: bold;
  color: #333;
}

.assign-task-form input[type="text"],
.assign-task-form input[type="date"],
.assign-task-form select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
}

.assign-task-form select:focus,
.assign-task-form input:focus {
  border-color: #007bff;
  outline: none;
}

.assign-task-form button {
  background: #007bff;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.assign-task-form button:hover {
  background: #0056b3;
}

/* Table of Assigned Tasks */
.assigned-tasks-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 25px;
}

.assigned-tasks-table th,
.assigned-tasks-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

.assigned-tasks-table th {
  background: #007bff;
  color: #fff;
}

.assigned-tasks-table tr:nth-child(even) {
  background: #f9f9f9;
}

.assigned-tasks-table tr:hover {
  background: #eef6ff;
}

/* Status Colors */
tr.pending td {
  color: #ff9800; /* orange */
}

tr.in-progress td {
  color: #2196f3; /* blue */
}

tr.completed td {
  color: #4caf50; /* green */
}
.alert.success {
  background: #d4edda;
  color: #155724;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.assign-task-container {
  max-width: 800px;
  margin: 30px auto;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.assigned-tasks-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.assigned-tasks-table th,
.assigned-tasks-table td {
  border: 1px solid #ddd;
  padding: 10px;
}

.assigned-tasks-table th {
  background: #007bff;
  color: #fff;
}

.assigned-tasks-table tr:nth-child(even) {
  background: #f9f9f9;
}

.assigned-tasks-table tr:hover {
  background: #eef6ff;
}

/* Status colors */
tr.pending td { color: #ff9800; }
tr.in-progress td { color: #2196f3; }
tr.completed td { color: #4caf50; }
.pagination {
  margin-top: 20px;
  text-align: center;
}

.pagination a {
  margin: 0 5px;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 4px;
}

.btn-light {
  background: #f4f4f4;
  color: #333;
}

.btn-primary {
  background: #007bff;
  color: #fff;
}

.btn-secondary {
  background: #6c757d;
  color: #fff;
}
.message-wall {
  margin-top: 20px;
}

.message {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.message-header {
  font-size: 14px;
  color: #555;
  display: flex;
  justify-content: space-between;
}

.message-body {
  margin-top: 5px;
  font-size: 15px;
}

.pagination {
  margin-top: 20px;
  text-align: center;
}

.pagination a {
  margin: 0 5px;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 4px;
}

.btn-light {
  background: #f4f4f4;
  color: #333;
}

.btn-primary {
  background: #007bff;
  color: #fff;
}

.btn-secondary {
  background: #6c757d;
  color: #fff;
}
.notifications {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.notif-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  position: relative;
}

.notifications .badge {
  background: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
  position: absolute;
  top: -5px;
  right: -10px;
}

.notif-dropdown {
  display: none;
  position: absolute;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  width: 250px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 1000;
}

.notifications:hover .notif-dropdown {
  display: block;
}

.notif-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.notif-dropdown li {
  padding: 8px;
  border-bottom: 1px solid #eee;
}

.notif-dropdown li.unread {
  font-weight: bold;
}
.card {
  background: var(--card);
  color: var(--text);
  padding: 20px;
  margin: 16px 0;
  border-radius: 12px;
  border: 1px solid rgba(11,37,69,0.06);
  box-shadow: 0 6px 18px rgba(11,37,69,0.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgba(11,37,69,0.12); }
.card h2, .card h3 { margin-top: 0; color: var(--text); }
.card p { color: rgba(11,37,69,0.85); }

.calendar {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.calendar th, .calendar td {
  padding: 8px;
  border: 1px solid #ddd;
}
.card {
  background: var(--card);
  color: var(--text);
  padding: 20px;
  margin: 16px 0;
  border-radius: 12px;
  border: 1px solid rgba(11,37,69,0.06);
  box-shadow: 0 6px 18px rgba(11,37,69,0.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgba(11,37,69,0.12); }
.card h2, .card h3 { margin-top: 0; color: var(--text); }
.card p { color: rgba(11,37,69,0.85); }

.calendar th, .calendar td {
  padding: 8px;
  border: 1px solid #e9ecef;
}

.calendar-header button {
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #f8f9fa;
  cursor: pointer;
}
.calendar-header button:hover {
  background: #e9ecef;
}

/* Common helper styles appended to ensure consistent visuals across admin and employee pages */
.cards { display:flex; flex-wrap:wrap; gap:15px; }
.cards .card { width:200px; text-align:center; }
.cards .card h3 { margin:0 0 10px; font-size:16px; }
.cards .card p { font-size:18px; font-weight:bold; }

.filters, .filter-form { margin-bottom: 12px; display:flex; gap:8px; flex-wrap:wrap; align-items:center; }
.filters input, .filters button, .filter-form input, .filter-form button { padding:6px 8px; }

.pagination { margin-top: 15px; text-align:center; }
.pagination a { margin: 0 4px; padding: 5px 10px; border: 1px solid #ccc; text-decoration: none; color: inherit; border-radius:4px; }
.pagination a.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.actions { display:flex; gap:10px; align-items:center; margin:12px 0; }

.profile-box { display:flex; align-items:center; gap:10px; }
.profile-pic { width:100px; height:100px; border-radius:50%; object-fit:cover; border:2px solid rgba(0,0,0,0.06); }

.styled-table th, .styled-table td { padding: 8px; border-bottom: 1px solid #eee; vertical-align: top; }

