/* ============================================================
   MKC Admin Dashboard — Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary:       #1B3A8C;
  --primary-light: #2D52B5;
  --primary-dark:  #122870;
  --accent:        #00C9B1;
  --accent-dark:   #00A896;
  --sidebar-bg:    #0F2156;
  --sidebar-width: 260px;
  --topbar-h:      64px;
  --bg:            #F0F4FF;
  --white:         #FFFFFF;
  --border:        #E2E8F0;
  --text-dark:     #1A202C;
  --text-medium:   #4A5568;
  --text-light:    #718096;
  --shadow-sm:     0 2px 8px rgba(27,58,140,.08);
  --shadow-md:     0 8px 30px rgba(27,58,140,.12);
  --radius:        12px;
  --transition:    .25s ease;

  /* Status colours */
  --s-new:       #3182CE;
  --s-confirmed: #805AD5;
  --s-assigned:  #DD6B20;
  --s-progress:  #D69E2E;
  --s-completed: #38A169;
  --s-cancelled: #E53E3E;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  display: flex;
  min-height: 100vh;
}

/* ---- Login Screen ---- */
.login-screen {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  padding: 1rem;
}

.login-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  text-align: center;
}

/* ---- Lucide Icons Global ---- */
[data-lucide] { display: inline-block; vertical-align: middle; }
.nav-item-icon [data-lucide] { width: 17px; height: 17px; stroke-width: 2; }
.stat-icon [data-lucide]     { width: 28px; height: 28px; stroke-width: 1.5; }
.status-option-btn [data-lucide] { width: 13px; height: 13px; stroke-width: 2.5; }
.modal-close [data-lucide]   { width: 18px; height: 18px; }
.btn-icon [data-lucide]      { width: 16px; height: 16px; }

/* ---- Sidebar Logo Image ---- */
.sidebar-logo-img {
  height: 32px;
  width:  auto;
  object-fit: contain;
  border-radius: 5px;
  flex-shrink: 0;
}
.sidebar-header {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: 1.1rem 1rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* ---- Login Logo (image version) ---- */
.login-logo {
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

/* ---- Old Login Logo (keep for fallback but override) ---- */
.login-logo-old {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
}

.login-title { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: .25rem; }
.login-sub   { font-size: .85rem; color: var(--text-light); margin-bottom: 2rem; }

.login-form { text-align: left; display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-label { font-size: .85rem; font-weight: 600; color: var(--text-dark); }
.form-input {
  padding: .75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-input:focus { border-color: var(--primary); }

.login-btn {
  padding: .85rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: .5rem;
}
.login-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(27,58,140,.35); }

.login-error {
  font-size: .8rem;
  color: #E53E3E;
  text-align: center;
  display: none;
  background: #FFF5F5;
  padding: .5rem;
  border-radius: 8px;
  border: 1px solid #FEB2B2;
}
.login-error.visible { display: block; }

/* ---- App Shell ---- */
.app-shell { display: flex; width: 100%; }

/* ---- Sidebar Overlay (mobile backdrop) ---- */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 190;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

/* ---- Sidebar Close Button (mobile X) ---- */
.sidebar-close-btn {
  display: none;
  width: 26px; height: 26px;
  border-radius: 7px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  align-items: center; justify-content: center;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
  transition: all .2s;
}
.sidebar-close-btn:hover { background: rgba(255,255,255,.16); color: #fff; }

/* ---- Sidebar ---- */
.sidebar {
  width: var(--sidebar-width);
  height: 100vh;
  background: linear-gradient(160deg, #0E1B3A 0%, #0F2156 45%, #0C1A35 100%);
  border-right: 1px solid rgba(255,255,255,.06);
  box-shadow: 4px 0 28px rgba(0,0,0,.3);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  z-index: 200;
  overflow: hidden;
  transition: transform var(--transition);
}

.sidebar-header {
  padding: .85rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(0,201,177,.06);
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}

.sidebar-logo {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.sidebar-brand strong { font-size: .87rem; font-weight: 700; color: var(--white); display: block; }
.sidebar-brand span   { font-size: .62rem; color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: 1px; }

.sidebar-nav {
  flex: 1;
  padding: .5rem 0;
  overflow-y: auto;
  min-height: 0; /* critical — allows flex child to shrink and scroll */
}
.sidebar-nav::-webkit-scrollbar { width: 3px; }
.sidebar-nav::-webkit-scrollbar-track { background: transparent; }
.sidebar-nav::-webkit-scrollbar-thumb { background: rgba(255,255,255,.14); border-radius: 3px; }

.nav-section-label {
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.28);
  padding: .55rem 1rem .18rem;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .48rem .75rem;
  margin: 1px .5rem;
  color: rgba(255,255,255,.6);
  font-size: .81rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 9px;
  border: none;
  text-decoration: none;
  position: relative;
}

.nav-item:hover {
  color: var(--white);
  background: rgba(255,255,255,.07);
}
.nav-item.active {
  color: var(--white);
  background: linear-gradient(135deg, rgba(0,201,177,.18) 0%, rgba(0,201,177,.08) 100%);
  box-shadow: inset 0 0 0 1px rgba(0,201,177,.22);
}
.nav-item.active .nav-item-icon { background: rgba(0,201,177,.2); color: var(--accent); }

.nav-item-icon {
  width: 28px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 7px;
  background: rgba(255,255,255,.05);
  flex-shrink: 0;
  transition: background var(--transition);
}
.nav-item:hover .nav-item-icon { background: rgba(255,255,255,.1); }

.nav-item-badge {
  margin-left: auto;
  background: var(--accent);
  color: var(--white);
  font-size: .6rem;
  font-weight: 700;
  padding: .1rem .42rem;
  border-radius: 50px;
  min-width: 18px;
  text-align: center;
}

.sidebar-footer {
  padding: .6rem 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
  background: rgba(0,0,0,.18);
}

.sidebar-user {
  display: flex; align-items: center; gap: .75rem;
}

.user-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.user-info strong { display: block; font-size: .8rem; color: var(--white); }
.user-info span   { font-size: .7rem; color: rgba(255,255,255,.4); }

/* ---- Main Content ---- */
.main-content {
  margin-left: var(--sidebar-width);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ---- Topbar ---- */
.topbar {
  height: var(--topbar-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.topbar-left { display: flex; align-items: center; gap: 1rem; }
.page-title { font-size: 1.15rem; font-weight: 700; color: var(--primary); }
.page-breadcrumb { font-size: .8rem; color: var(--text-light); }

.topbar-right { display: flex; align-items: center; gap: 1rem; }

.topbar-btn {
  padding: .5rem 1.1rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.topbar-btn-primary { background: var(--primary); color: var(--white); }
.topbar-btn-primary:hover { background: var(--primary-light); }

.topbar-notif {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  transition: all var(--transition);
}
.topbar-notif:hover { background: var(--border); }

.notif-dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--white);
}

/* ---- Page Content ---- */
.page-content { padding: 2rem; flex: 1; }

/* ---- Stats Cards ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  transition: all var(--transition);
}

.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.stat-info {}
.stat-label { font-size: .8rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; margin-bottom: .4rem; }
.stat-value { font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-change { font-size: .75rem; margin-top: .4rem; }
.stat-change.up   { color: #38A169; }
.stat-change.down { color: #E53E3E; }

.stat-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* ---- Section Card ---- */
.section-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.section-card-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-card-title { font-size: 1rem; font-weight: 700; color: var(--primary); }

.section-card-actions { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; }

/* ---- Filters ---- */
.filter-bar {
  display: flex;
  gap: .75rem;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.filter-input {
  flex: 1;
  min-width: 200px;
  padding: .55rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.filter-input:focus { border-color: var(--primary); }

.filter-select {
  padding: .55rem .9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  background: var(--white);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 1.75rem;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
}

thead tr { background: var(--bg); }
thead th {
  padding: .85rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--text-medium);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}

tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  cursor: pointer;
}

tbody tr:hover { background: var(--bg); }
tbody tr:last-child { border-bottom: none; }

tbody td {
  padding: .9rem 1rem;
  color: var(--text-dark);
  vertical-align: middle;
}

.td-muted { color: var(--text-light); font-size: .8rem; }
.td-bold  { font-weight: 600; }

/* ---- Status Badge ---- */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .75rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
}

.status-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.status-new       { background: #EBF8FF; color: var(--s-new); }
.status-confirmed { background: #F0F0FF; color: var(--s-confirmed); }
.status-assigned  { background: #FFF3E0; color: var(--s-assigned); }
.status-progress  { background: #FFFDE0; color: var(--s-progress); }
.status-completed { background: #F0FFF4; color: var(--s-completed); }
.status-cancelled { background: #FFF5F5; color: var(--s-cancelled); }

/* ---- Action Buttons ---- */
.action-btns { display: flex; gap: .4rem; }

.btn-icon {
  width: 30px; height: 30px;
  border-radius: 7px;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: .85rem;
  transition: all var(--transition);
}
.btn-icon:hover { background: var(--primary); border-color: var(--primary); filter: brightness(5); }

/* ---- Modal ---- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
  animation: modalIn .3s ease;
}

@keyframes modalIn {
  from { transform: scale(.95) translateY(20px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}

.modal-title { font-size: 1.1rem; font-weight: 700; color: var(--primary); }

.modal-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--bg);
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.modal-close:hover { background: var(--border); }

.modal-body { padding: 1.5rem; }

/* ---- Detail Grid ---- */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.detail-item {}
.detail-label { font-size: .75rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: .5px; margin-bottom: .25rem; }
.detail-value { font-size: .9rem; color: var(--text-dark); font-weight: 500; }
.detail-value.highlight { color: var(--primary); font-weight: 700; font-size: 1rem; }

/* ---- Status Update ---- */
.status-update-bar {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.status-update-label { font-size: .85rem; font-weight: 600; color: var(--text-dark); margin-bottom: .75rem; }

.status-options { display: flex; gap: .5rem; flex-wrap: wrap; }

.status-option-btn {
  padding: .4rem .9rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  opacity: .7;
}

.status-option-btn:hover, .status-option-btn.active { opacity: 1; transform: translateY(-1px); }
.status-option-btn.active { border-width: 2px; }

.status-opt-new       { background: #EBF8FF; color: var(--s-new);       border-color: var(--s-new); }
.status-opt-confirmed { background: #F0F0FF; color: var(--s-confirmed); border-color: var(--s-confirmed); }
.status-opt-assigned  { background: #FFF3E0; color: var(--s-assigned);  border-color: var(--s-assigned); }
.status-opt-progress  { background: #FFFDE0; color: var(--s-progress);  border-color: var(--s-progress); }
.status-opt-completed { background: #F0FFF4; color: var(--s-completed); border-color: var(--s-completed); }
.status-opt-cancelled { background: #FFF5F5; color: var(--s-cancelled); border-color: var(--s-cancelled); }

/* ---- Admin Notes ---- */
.admin-note-area {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: .875rem;
  min-height: 80px;
  resize: vertical;
  outline: none;
  transition: border-color var(--transition);
}
.admin-note-area:focus { border-color: var(--primary); }

/* ---- Modal Footer ---- */
.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.modal-save-btn {
  padding: .65rem 1.75rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.modal-save-btn:hover { background: var(--primary-light); }

.modal-delete-btn {
  padding: .65rem 1.25rem;
  background: #FFF5F5;
  color: #E53E3E;
  border: 1px solid #FEB2B2;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.modal-delete-btn:hover { background: #E53E3E; color: var(--white); }

/* ---- Toast Notification ---- */
.toast-container {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.toast {
  background: var(--primary-dark);
  color: var(--white);
  padding: .85rem 1.25rem;
  border-radius: 12px;
  font-size: .85rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 260px;
  animation: toastIn .3s ease;
}

.toast.success { background: #276749; }
.toast.error   { background: #9B2C2C; }

@keyframes toastIn {
  from { transform: translateX(100px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}

/* ---- Empty State ---- */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-light);
}
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state p { font-size: .9rem; }

/* ---- Pagination ---- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  font-size: .85rem;
  color: var(--text-medium);
  flex-wrap: wrap;
  gap: .75rem;
}

.page-btns { display: flex; gap: .4rem; }

.page-btn {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.page-btn:hover { background: var(--bg); }
.page-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ---- Touch — no accidental double-tap zoom ---- */
button, a, .nav-item, [onclick], input, select, textarea {
  touch-action: manipulation;
}

/* ---- Prevent horizontal overflow ---- */
body { overflow-x: hidden; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: none; }
  .main-content { margin-left: 0; max-width: 100vw; overflow-x: hidden; }
  .detail-grid { grid-template-columns: 1fr; }

  /* Show overlay backdrop when sidebar is open */
  .sidebar-overlay.open { display: block; }

  /* Show close X button inside sidebar */
  .sidebar-close-btn { display: flex; }

  /* Show hamburger toggle in topbar */
  #sidebarToggle { display: flex !important; }

  /* iOS zoom fix — inputs < 16px trigger Safari zoom */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="number"],
  input[type="date"],
  select,
  textarea,
  .form-input,
  .filter-input,
  .filter-select,
  .admin-note-area,
  .emp-status-select,
  .isl {
    font-size: 16px !important;
  }

  /* Compact topbar */
  .topbar { padding: 0 .75rem; }
  .topbar-right { gap: .4rem; }
  .page-title { font-size: 1rem; }
  .page-breadcrumb { display: none; }
}

@media (max-width: 640px) {
  .page-content { padding: .85rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .topbar-btn span { display: none; }
  #lastRefresh { display: none; }
}

/* ============================================================
   ASSIGNED EMPLOYEE CARD (inside booking modal)
   ============================================================ */
.aec-card {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: linear-gradient(135deg, #F0FFF4, #EBF8FF);
  border: 1.5px solid #68D391;
  border-radius: 14px;
  padding: .8rem 1rem;
  margin-bottom: .6rem;
  transition: all var(--transition);
}
.aec-card:last-child { margin-bottom: 0; }
.aec-card:hover { box-shadow: 0 4px 16px rgba(56,161,105,.15); }

.aec-avatar {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #276749, #38A169);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  text-transform: uppercase;
}

.aec-info { flex: 1; min-width: 0; }
.aec-name  { font-size: .88rem; font-weight: 700; color: var(--text-dark); }
.aec-meta  { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin-top: .25rem; }
.aec-phone { font-size: .75rem; color: var(--text-light); text-decoration: none; }
.aec-phone:hover { color: var(--primary); }
.aec-since { font-size: .72rem; color: var(--text-light); margin-top: .2rem; }

.aec-timer-wrap { text-align: center; flex-shrink: 0; }
.aec-timer-label {
  font-size: .62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #38A169;
  margin-bottom: .2rem;
}
.aec-timer {
  font-size: 1.05rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  font-family: 'Courier New', monospace;
  color: var(--primary);
  background: var(--white);
  border: 1.5px solid #C6F6D5;
  border-radius: 8px;
  padding: .25rem .6rem;
  letter-spacing: 1.5px;
  min-width: 90px;
  text-align: center;
}

/* ============================================================
   AUTO-REFRESH PILL
   ============================================================ */
.auto-refresh-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #F0FFF4;
  border: 1px solid #68D391;
  color: #276749;
  font-size: .72rem;
  font-weight: 600;
  padding: .3rem .7rem;
  border-radius: 50px;
  letter-spacing: .3px;
}
.arp-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #38A169;
  animation: arpBlink 2s infinite;
}
@keyframes arpBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}
.auto-refresh-pill.pulse {
  background: #EBF8FF;
  border-color: #3182CE;
  color: #1A365D;
  animation: arpPulse .5s ease 3;
}
@keyframes arpPulse {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.08); }
}

/* ============================================================
   ASSIGN SECTION (inside booking modal)
   ============================================================ */
.assign-section {
  background: linear-gradient(135deg, #EEF2FF, #F0FFF4);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.assign-section-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .75rem;
}
.assign-edit-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .75rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.assign-edit-btn:hover { background: var(--primary-light); }

.assigned-emp-list { display: flex; flex-wrap: wrap; gap: .5rem; }

.assigned-emp-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: .3rem .75rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-dark);
}

.emp-avatar-xs {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.emp-exp-tiny {
  font-size: .62rem;
  padding: .1rem .4rem;
  border-radius: 50px;
  font-weight: 600;
}

/* ============================================================
   EMPLOYEE GRID + CARDS
   ============================================================ */
.emp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.emp-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.emp-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--primary); }

.emp-card-header {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1.1rem 1.1rem .75rem;
}

.emp-avatar {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  text-transform: uppercase;
}

.emp-card-meta { flex: 1; min-width: 0; }
.emp-card-name {
  font-size: .92rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: .35rem;
}
.emp-card-badges { display: flex; flex-wrap: wrap; gap: .35rem; }

.emp-edit-btn {
  width: 28px; height: 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition);
}
.emp-edit-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); filter: brightness(5); }

/* ---- Employee Status Badges ---- */
.emp-status-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .2rem .6rem;
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .3px;
}
.emp-status-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.emp-status-available { background: #F0FFF4; color: #38A169; }
.emp-status-assigned  { background: #FFF3E0; color: #DD6B20; }
.emp-status-on_leave  { background: #FFFFF0; color: #D69E2E; }
.emp-status-off_duty  { background: #F7FAFC; color: #718096; }
.emp-status-inactive  { background: #FFF5F5; color: #E53E3E; }

/* ---- Employee Experience Badges ---- */
.emp-exp-badge {
  display: inline-block;
  padding: .18rem .55rem;
  border-radius: 50px;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .3px;
}
.emp-exp-new          { background: #F7FAFC; color: #718096; border: 1px solid #CBD5E0; }
.emp-exp-beginner     { background: #EBF8FF; color: #2B6CB0; }
.emp-exp-intermediate { background: #FFF3E0; color: #C05621; }
.emp-exp-experienced  { background: #F0F0FF; color: #553C9A; }
.emp-exp-professional { background: linear-gradient(135deg,#1B3A8C,#00C9B1); color: #fff; }

/* ---- Card Body ---- */
.emp-card-body {
  padding: 0 1.1rem .75rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  border-bottom: 1px solid var(--border);
}

.emp-detail-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .79rem;
  color: var(--text-medium);
}
.emp-detail-icon { width: 13px; height: 13px; color: var(--text-light); flex-shrink: 0; }
.emp-visa-warn { color: #E53E3E; font-weight: 600; }

/* ---- Card Stats ---- */
.emp-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: .75rem 1.1rem;
  border-bottom: 1px solid var(--border);
  gap: .5rem;
}
.emp-stat { text-align: center; }
.emp-stat-val { font-size: 1.3rem; font-weight: 800; color: var(--primary); line-height: 1; }
.emp-stat-lbl { font-size: .67rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; margin-top: .2rem; }

/* ---- Card Footer ---- */
.emp-card-footer {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.1rem;
}

.emp-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: .45rem .7rem;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: .76rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.emp-btn-profile { background: var(--bg); color: var(--primary); border: 1.5px solid var(--border); }
.emp-btn-profile:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.emp-status-select {
  flex: 1;
  padding: .42rem .6rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  background: var(--bg);
  outline: none;
  cursor: pointer;
  color: var(--text-dark);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
  padding-right: 1.4rem;
}

/* ============================================================
   ASSIGN EMPLOYEES MODAL — Employee Rows
   ============================================================ */
.assign-emp-row {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}
.assign-emp-row:hover      { border-color: var(--primary); background: #EEF2FF; }
.assign-emp-row.assign-emp-busy { opacity: .7; }
.assign-emp-row input[type=checkbox] { width: 17px; height: 17px; accent-color: var(--primary); flex-shrink: 0; cursor: pointer; }

.emp-avatar-sm {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-size: .95rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  text-transform: uppercase;
}

.assign-emp-info { flex: 1; min-width: 0; }
.assign-emp-name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}
.assign-emp-sub {
  font-size: .76rem;
  color: var(--text-light);
  margin-top: .2rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}

/* ============================================================
   EMPLOYEE PROFILE MODAL
   ============================================================ */
.emp-profile-avatar {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  text-transform: uppercase;
}

.prof-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #0d1b2a, #1a3c5e);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}

.prof-stat { text-align: center; }
.prof-stat-val { font-size: 1.6rem; font-weight: 800; color: var(--white); line-height: 1; }
.prof-stat-lbl { font-size: .68rem; color: rgba(255,255,255,.6); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; margin-top: .3rem; }

/* ============================================================
   EMPLOYEE FORM GRID
   ============================================================ */
.emp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.emp-form-full { grid-column: 1 / -1; }

/* ============================================================
   RESPONSIVE — Employee
   ============================================================ */
@media (max-width: 640px) {
  .emp-grid { grid-template-columns: 1fr; }
  .prof-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .emp-form-grid { grid-template-columns: 1fr; }
  .emp-form-full { grid-column: 1; }
}

/* ============================================================
   AEC CARD — Completed / Frozen Timer State
   ============================================================ */
.aec-card-done {
  background: linear-gradient(135deg, #F0FFF4, #E6FFED) !important;
  border-color: #9AE6B4 !important;
  opacity: .92;
}
.aec-card-done .aec-avatar {
  background: linear-gradient(135deg, #276749, #38A169) !important;
}

.aec-timer-done {
  background: #F0FFF4;
  color: #276749 !important;
  border: 1.5px solid #9AE6B4 !important;
  font-variant-numeric: tabular-nums;
}
.aec-done-lbl {
  color: #38A169 !important;
  font-weight: 700;
}
.aec-done-wrap { gap: .2rem; }

/* ============================================================
   ASSIGN MODAL — Locked / Busy-elsewhere Row
   ============================================================ */
.assign-emp-locked {
  opacity: .52;
  cursor: not-allowed;
  background: rgba(229,62,62,.04) !important;
  border-color: rgba(229,62,62,.18) !important;
}
.assign-emp-locked input[type="checkbox"] {
  cursor: not-allowed;
  accent-color: #CBD5E0;
}

/* ============================================================
   PREMIUM DASHBOARD — KPI Strip
   ============================================================ */
.kpi-strip {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr);
  gap: .85rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.kpi-card {
  background: var(--white);
  border-radius: 14px;
  padding: .9rem 1rem;
  display: flex !important;
  align-items: center;
  gap: .85rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-top: 3px solid var(--k, var(--primary));
  transition: all var(--transition);
  cursor: default;
  min-width: 0;
  overflow: hidden;
}
.kpi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.kpi-ico {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kpi-ico [data-lucide] { width: 20px; height: 20px; }

.kpi-body { min-width: 0; flex: 1; }
.kpi-lbl  { font-size: .62rem; font-weight: 600; text-transform: uppercase; letter-spacing: .6px; color: var(--text-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kpi-num  { font-size: 1.5rem; font-weight: 800; color: var(--primary); line-height: 1.1; }
.kpi-sub  { font-size: .6rem; color: var(--text-light); margin-top: .1rem; }

/* ============================================================
   PREMIUM DASHBOARD — Charts Row
   ============================================================ */
.dash-charts-row {
  display: flex !important;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
  width: 100%;
}

/* ============================================================
   PREMIUM DASHBOARD — Service KPI Row
   ============================================================ */
.svc-kpi-row {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr);
  gap: .75rem;
  width: 100%;
}

.svc-kpi {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .75rem .85rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.svc-kpi:hover { background: var(--white); border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.svc-ico  { font-size: 1.4rem; margin-bottom: .2rem; }
.svc-lbl  { font-size: .62rem; color: var(--text-light); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.svc-num  { font-size: 1.3rem; font-weight: 800; color: var(--primary); line-height: 1; margin-top: .1rem; }

/* ============================================================
   INLINE STATUS DROPDOWN (isl)
   ============================================================ */
.isl {
  padding: .22rem .6rem;
  border-radius: 20px;
  font-size: .68rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  outline: none;
  border: 1.5px solid;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 5px center;
  padding-right: 1.3rem;
  transition: box-shadow .2s;
  white-space: nowrap;
  min-width: 105px;
}
.isl:hover        { box-shadow: 0 2px 8px rgba(0,0,0,.12); }
.isl-new          { background-color: #EBF8FF; color: #3182CE; border-color: #3182CE; }
.isl-confirmed    { background-color: #F0EEFF; color: #805AD5; border-color: #805AD5; }
.isl-assigned     { background-color: #FFF3E0; color: #DD6B20; border-color: #DD6B20; }
.isl-in_progress  { background-color: #FFFDE0; color: #B7791F; border-color: #B7791F; }
.isl-completed    { background-color: #F0FFF4; color: #276749; border-color: #38A169; }
.isl-cancelled    { background-color: #FFF5F5; color: #C53030; border-color: #E53E3E; }

/* ============================================================
   STAFF CHIPS (overlapping avatars in table)
   ============================================================ */
.staff-chips {
  display: flex;
  align-items: center;
}
.staff-chip {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: .55rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
  margin-left: -5px;
  flex-shrink: 0;
  text-transform: uppercase;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.staff-chips .staff-chip:first-child { margin-left: 0; }
.staff-chip-more {
  background: #718096;
  font-size: .5rem;
}
.staff-none { color: #CBD5E0; font-size: .72rem; font-style: italic; }

/* ============================================================
   QUICK-ASSIGN BUTTON + DROPDOWN
   ============================================================ */
.qa-btn {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .22rem .65rem;
  border-radius: 20px;
  font-size: .67rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
  background: #EBF8FF;
  border: 1.5px dashed var(--primary);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  line-height: 1.4;
}
.qa-btn:hover { background: var(--primary); color: #fff; border-style: solid; }

.qa-drop {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  z-index: 1200;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 10px 36px rgba(27,58,140,.18);
  min-width: 210px;
  max-height: 270px;
  overflow-y: auto;
  padding: .4rem;
}

.qa-drop-title {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text-light);
  padding: .3rem .5rem .45rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: .3rem;
}

.qa-drop-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .45rem .5rem;
  border-radius: 9px;
  cursor: pointer;
  transition: background .15s;
}
.qa-drop-item:hover { background: #EBF8FF; }

.qa-emp-av {
  width: 30px; height: 30px; min-width: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.qa-emp-name { font-size: .78rem; font-weight: 600; color: var(--text-dark); line-height: 1.2; }
.qa-emp-exp  { font-size: .64rem; color: var(--text-light); }

/* ============================================================
   RESPONSIVE — Dashboard
   ============================================================ */
@media (max-width: 1280px) {
  .kpi-strip { grid-template-columns: repeat(3, 1fr); }
  .svc-kpi-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .kpi-strip { grid-template-columns: repeat(2, 1fr); }
  .dash-charts-row { flex-direction: column; }
  .svc-kpi-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .kpi-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   EMPLOYEE PROFILE FULL PAGE — Header Card
   ============================================================ */
.emp-prof-hdr {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  flex-wrap: wrap;
}

.emp-prof-av {
  width: 74px; height: 74px; min-width: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: 1.9rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(27,58,140,.25);
  flex-shrink: 0;
}

.emp-prof-info {
  flex: 1;
  min-width: 220px;
}

.emp-prof-name {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.emp-prof-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  font-size: .8rem;
  color: var(--text-medium);
  margin-top: .1rem;
}
.emp-prof-meta a { color: var(--primary); text-decoration: none; }
.emp-prof-meta a:hover { text-decoration: underline; }

.emp-prof-acts {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .emp-prof-hdr { gap: 1rem; padding: 1.25rem; }
  .emp-prof-acts { width: 100%; }
}
