/* ============================================================
   BT Ticket — Premium UI Theme (New Dashboard & Login)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Colors */
  --primary:       #2563EB;
  --primary-hover: #1D4ED8;
  --primary-glow:  rgba(37, 99, 235, 0.15);
  
  --navy-dark:     #0F172A;
  --navy-mid:      #1E293B;
  --navy-light:    #334155;
  
  --teal:          #14B8A6;
  --purple:        #7C3AED;
  --orange:        #F97316;
  --red:           #F43F5E;
  --green:         #22C55E;
  
  /* Backgrounds */
  --bg-main:       #F6F8FC;
  --bg-card:       #FFFFFF;
  --bg-sidebar:    linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
  
  /* Text Colors */
  --t1:            #0F172A;
  --t2:            #475569;
  --t3:            #94A3B8;
  --t4:            #E2E8F0;
  
  /* Radius & Shadows */
  --r-xl:          24px;
  --r-lg:          16px;
  --r-md:          12px;
  --r-sm:          8px;
  --shadow-sm:     0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md:     0 10px 30px -10px rgba(15, 23, 42, 0.08);
  --shadow-lg:     0 20px 50px -12px rgba(15, 23, 42, 0.12);
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Sizes */
  --sidebar-w:     260px;
  --topbar-h:      70px;
}

/* Reset and Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  font-size: 14px;
  background-color: var(--bg-main);
  color: var(--t2);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

button, input, select, textarea {
  font-family: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--t4);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--t3);
}

/* ============================================================
   LAYOUT WRAPPER & SIDEBAR
   ============================================================ */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--bg-sidebar);
  display: flex;
  flex-direction: column;
  z-index: 300;
  transition: var(--transition);
  box-shadow: 4px 0 24px rgba(15, 23, 42, 0.15);
}

.sidebar.collapsed {
  transform: translateX(calc(-1 * var(--sidebar-w)));
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  height: var(--topbar-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.brand-logo {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.brand-logo svg {
  width: 22px;
  height: 22px;
  fill: none;
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 24px 16px;
}
.sidebar-nav::-webkit-scrollbar {
  width: 0;
}

.nav-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--t3);
  padding: 16px 12px 6px;
  opacity: 0.5;
  display: block;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  color: #94A3B8;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 4px;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  text-decoration: none;
}

.nav-item.active {
  background: linear-gradient(90deg, var(--primary) 0%, rgba(37, 99, 235, 0.4) 100%);
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
}

.nav-item .ni {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  color: #64748B;
  transition: var(--transition);
}

.nav-item:hover .ni {
  color: #94A3B8;
}

.nav-item.active .ni {
  color: #FFFFFF;
}

/* Sidebar Footer (System Status Widget) */
.sidebar-footer {
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-status-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r-md);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--green);
  border-radius: 50%;
  position: relative;
}

.status-dot-pulse::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: pulse-green 2s infinite;
  opacity: 0;
}

@keyframes pulse-green {
  0% { transform: scale(0.6); opacity: 0; }
  50% { opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0; }
}

.status-info {
  display: flex;
  flex-direction: column;
}

.status-title {
  font-size: 11px;
  color: var(--t3);
  font-weight: 500;
  text-transform: uppercase;
}

.status-desc {
  font-size: 12.5px;
  color: #FFFFFF;
  font-weight: 600;
}

.sidebar-copyright {
  padding: 0 16px 16px;
  font-size: 11px;
  color: #64748B;
  line-height: 1.4;
  text-align: center;
}

/* ============================================================
   MAIN WRAPPER & TOP NAVBAR
   ============================================================ */
.main-wrapper {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.sidebar.collapsed ~ .main-wrapper {
  margin-left: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--topbar-h);
  background: var(--bg-card);
  border-bottom: 1px solid var(--t4);
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

.toggle-btn {
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--t4);
  border-radius: var(--r-sm);
  color: var(--t2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}

.toggle-btn:hover {
  background: var(--bg-main);
  color: var(--t1);
  border-color: var(--t3);
}

.topbar-welcome {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.topbar-welcome h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--t1);
}

.topbar-welcome p {
  font-size: 12px;
  color: var(--t3);
}

.topbar-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-main);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  padding: 10px 16px;
  width: 320px;
  transition: var(--transition);
}

.topbar-search:focus-within {
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.topbar-search i {
  color: var(--t3);
  font-size: 14px;
}

.topbar-search input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13.5px;
  color: var(--t1);
  width: 100%;
}

.topbar-search input::placeholder {
  color: var(--t3);
}

.topbar-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-right .btn-primary {
  padding: 10px 20px;
  font-weight: 600;
  font-size: 13.5px;
}

.tb-icon-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--t4);
  border-radius: var(--r-md);
  color: var(--t2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
  position: relative;
  text-decoration: none;
}

.tb-icon-btn:hover {
  background: var(--bg-main);
  color: var(--t1);
}

.tb-notif-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  background: var(--red);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
  padding: 0 4px;
}

.topbar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border: 1px solid var(--t4);
  border-radius: var(--r-md);
  background: var(--bg-main);
  cursor: default;
}

.tu-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.tu-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.tu-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--t1);
}

.tu-role {
  font-size: 11px;
  color: var(--t3);
}

.logout-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--t4);
  border-radius: var(--r-md);
  color: var(--t2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
  font-size: 14px;
}

.logout-btn:hover {
  background: #FEF2F2;
  color: var(--red);
  border-color: #FECACA;
}

/* ============================================================
   CONTENT & PAGE HEADER
   ============================================================ */
.content {
  flex: 1;
  padding: 32px;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.ph-left {
  display: flex;
  flex-direction: column;
}

.ph-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.5px;
}

.ph-sub {
  font-size: 13.5px;
  color: var(--t3);
  margin-top: 2px;
}

.page-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ============================================================
   METRIC CARDS (GRADIENTS & TRENDS)
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

@media (max-width: 1400px) {
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
@media (max-width: 380px) {
  .stats-row {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 18px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
  color: #FFFFFF;
}

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

.stat-card.gradient-blue {
  background: linear-gradient(135deg, #2563EB 0%, #60A5FA 100%);
}
.stat-card.gradient-teal {
  background: linear-gradient(135deg, #14B8A6 0%, #2DD4BF 100%);
}
.stat-card.gradient-purple {
  background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
}
.stat-card.gradient-orange {
  background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
}
.stat-card.gradient-red {
  background: linear-gradient(135deg, #F43F5E 0%, #FB7185 100%);
}

.stat-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.stat-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.stat-card-sparkline {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  max-width: 120px;
  height: 50px;
  opacity: 0.25;
  pointer-events: none;
  overflow: hidden;
}

.stat-card-sparkline svg {
  width: 100%;
  height: 100%;
}

.stat-card-body {
  position: relative;
  z-index: 2;
}

.stat-card-value {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.stat-card-label {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .stat-card { padding: 14px 12px; }
  .stat-card-header { margin-bottom: 10px; }
  .stat-card-icon { width: 34px; height: 34px; font-size: 14px; border-radius: 8px; }
  .stat-card-value { font-size: 22px; }
  .stat-card-label { font-size: 11px; }
  .stat-card-desc { display: none !important; }
}

@media (max-width: 600px) {
  .stat-card { padding: 12px 10px; }
  .stat-card-value { font-size: 20px; }
  .stat-card-sparkline { display: none; }
}

.stat-card-trend {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.15);
  padding: 2px 8px;
  border-radius: 99px;
  width: fit-content;
}

/* ============================================================
   CARDS AND DASHBOARD WIDGETS
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--t4);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 24px;
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--t4);
}

.card-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--t1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-header h3 i {
  color: var(--primary);
  font-size: 15px;
}

.card-body {
  padding: 24px;
}

.card-body.p-0 {
  padding: 0;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  .dash-grid {
    grid-template-columns: 1fr;
  }
}

.dash-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 380px;
  gap: 24px;
}

@media (max-width: 1400px) {
  .dash-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .dash-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* SLA Status Widget */
.sla-progress-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.sla-radial-svg {
  position: relative;
  width: 150px;
  height: 150px;
}

.sla-radial-svg circle {
  fill: none;
  stroke-width: 12;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.sla-radial-svg .circle-bg {
  stroke: var(--t4);
}

.sla-radial-svg .circle-progress {
  stroke: var(--green);
  stroke-linecap: round;
  transition: stroke-dashoffset 0.8s ease;
}

.sla-radial-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.sla-radial-value {
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--t1);
  line-height: 1;
}

.sla-radial-label {
  font-size: 11px;
  color: var(--t3);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 2px;
}

.sla-metrics {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
  border-top: 1px solid var(--t4);
  padding-top: 18px;
}

.sla-metric-item {
  text-align: center;
}

.sla-metric-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--t3);
}

.sla-metric-val {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-top: 2px;
}

.sla-metric-val.green { color: var(--green); }
.sla-metric-val.orange { color: var(--orange); }
.sla-metric-val.red { color: var(--red); }

/* Technician Performance */
.tech-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--t4);
  transition: var(--transition);
}

.tech-row:hover {
  background: var(--bg-main);
}

.tech-row:last-child {
  border-bottom: none;
}

.tech-rank {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--t3);
  width: 20px;
}

.tech-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 700;
  color: #FFFFFF;
  flex-shrink: 0;
}

.tech-details {
  flex: 1;
  min-width: 0;
}

.tech-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--t1);
}

.tech-bar-container {
  height: 6px;
  background: var(--t4);
  border-radius: 99px;
  margin-top: 6px;
  overflow: hidden;
}

.tech-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  border-radius: 99px;
  transition: width 0.5s ease-out;
}

.tech-score-wrap {
  text-align: right;
  flex-shrink: 0;
}

.tech-score {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--t1);
}

.tech-sub-score {
  font-size: 11px;
  color: var(--t3);
}

/* ============================================================
   TICKET STATUS BOARD (KANBAN WIDGET)
   ============================================================ */
.kanban-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 10px;
}

@media (max-width: 1200px) {
  .kanban-board {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .kanban-board {
    grid-template-columns: 1fr;
  }
}

.kanban-column {
  background: var(--bg-main);
  border-radius: var(--r-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

.kanban-col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 0 4px;
}

.kanban-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--t1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.kanban-col-title .indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.kanban-col-title.col-new .indicator-dot { background-color: var(--primary); }
.kanban-col-title.col-progress .indicator-dot { background-color: var(--orange); }
.kanban-col-title.col-hold .indicator-dot { background-color: var(--purple); }
.kanban-col-title.col-resolved .indicator-dot { background-color: var(--green); }

.kanban-col-badge {
  font-size: 11px;
  font-weight: 700;
  background: var(--t4);
  color: var(--t2);
  padding: 2px 8px;
  border-radius: 99px;
}

.kanban-col-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 2px;
}
.kanban-col-body::-webkit-scrollbar {
  width: 4px;
}
.kanban-col-body::-webkit-scrollbar-track {
  background: transparent;
}
.kanban-col-body::-webkit-scrollbar-thumb {
  background: var(--border, #e2e8f0);
  border-radius: 4px;
}
.kanban-col-body::-webkit-scrollbar-thumb:hover {
  background: #cbd5e1;
}

.kanban-card {
  background: var(--bg-card);
  border: 1px solid var(--t4);
  border-radius: var(--r-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.kanban-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.kanban-card-no {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
  padding: 2px 8px;
  border-radius: var(--r-sm);
  width: fit-content;
}

.kanban-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--t1);
  margin-top: 8px;
  line-height: 1.4;
  word-break: break-word;
}

.kanban-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  border-top: 1px dashed var(--t4);
  padding-top: 10px;
}

.kanban-card-user {
  font-size: 12px;
  color: var(--t2);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.kanban-card-user-av {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--t4);
  color: var(--t2);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kanban-card-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px;
  border: 1px dashed var(--t3);
  border-radius: var(--r-md);
  color: var(--t2);
  font-size: 12px;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 12px;
}

.kanban-card-add-btn:hover {
  background: rgba(37, 99, 235, 0.04);
  border-color: var(--primary);
  color: var(--primary);
}

/* ============================================================
   TIMELINE AND ACTIVITIES (RECENT ACTIVITY)
   ============================================================ */
.recent-activity-timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 20px;
}

.recent-activity-timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 5px;
  width: 2px;
  height: calc(100% - 16px);
  background-color: var(--t4);
}

.timeline-item {
  position: relative;
  padding-bottom: 20px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -20px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 3px solid var(--primary);
  z-index: 2;
}

.timeline-dot.blue { border-color: var(--primary); }
.timeline-dot.green { border-color: var(--green); }
.timeline-dot.orange { border-color: var(--orange); }
.timeline-dot.purple { border-color: var(--purple); }
.timeline-dot.red { border-color: var(--red); }

.timeline-content {
  display: flex;
  flex-direction: column;
  background: var(--bg-main);
  border-radius: var(--r-md);
  padding: 12px 16px;
  border: 1px solid var(--t4);
}

.timeline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.timeline-user {
  font-weight: 700;
  color: var(--t1);
  font-size: 13px;
}

.timeline-time {
  font-size: 11px;
  color: var(--t3);
}

.timeline-body {
  font-size: 12.5px;
  color: var(--t2);
}

.timeline-body a {
  font-weight: 700;
}

/* ============================================================
   SYSTEM HEALTH AND QUICK ACTIONS
   ============================================================ */
.system-health-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 500px) {
  .system-health-grid {
    grid-template-columns: 1fr;
  }
}

.health-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--r-md);
  background: var(--bg-main);
  border: 1px solid var(--t4);
}

.health-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
  color: var(--primary);
  flex-shrink: 0;
}

.health-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.health-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--t1);
}

.health-status {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 4px;
}

.health-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--green);
  border-radius: 50%;
  display: inline-block;
}

/* Quick Actions Widget */
.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 450px) {
  .quick-actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.action-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: var(--bg-card);
  border: 1px solid var(--t4);
  border-radius: var(--r-md);
  color: var(--t2);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.action-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  color: var(--primary);
}

.action-tile i {
  font-size: 18px;
  margin-bottom: 6px;
}

.action-tile.tile-blue i { color: var(--primary); }
.action-tile.tile-teal i { color: var(--teal); }
.action-tile.tile-purple i { color: var(--purple); }
.action-tile.tile-orange i { color: var(--orange); }
.action-tile.tile-red i { color: var(--red); }
.action-tile.tile-green i { color: var(--green); }

.action-tile span {
  font-size: 12px;
  font-weight: 600;
}

/* Top Users list */
.top-users-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.top-user-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 76px;
}

.top-user-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
  box-shadow: 0 4px 10px rgba(124, 58, 237, 0.15);
}

.top-user-name {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--t1);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.top-user-tickets {
  font-size: 11px;
  color: var(--t3);
  font-weight: 500;
}

/* ============================================================
   BUTTONS AND BADGES (GLOBAL REDESIGN)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--t4);
  color: var(--t1);
  border: 1px solid transparent;
}

.btn-secondary:hover {
  background: #CBD5E1;
  color: var(--t1);
}

.btn-ghost {
  background: transparent;
  color: var(--t2);
  border: 1px solid var(--t4);
}

.btn-ghost:hover {
  background: var(--bg-main);
  color: var(--t1);
  border-color: var(--t3);
}

.btn-success {
  background: var(--green);
  color: #FFFFFF;
}

.btn-success:hover {
  background: #1E9E4F;
}

.btn-danger {
  background: var(--red);
  color: #FFFFFF;
}

.btn-danger:hover {
  background: #D93853;
}

.btn-warning {
  background: var(--orange);
  color: #FFFFFF;
}

.btn-warning:hover {
  background: #E06713;
}

.btn-sm {
  padding: 8px 14px;
  font-size: 12.5px;
  border-radius: var(--r-sm);
}

.btn-xs {
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 6px;
}

.btn-full {
  width: 100%;
}

/* Modern Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.badge-open {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}

.badge-inprogress {
  background: rgba(249, 115, 22, 0.08);
  color: var(--orange);
}

.badge-waiting {
  background: rgba(124, 58, 237, 0.08);
  color: var(--purple);
}

.badge-resolved {
  background: rgba(34, 197, 94, 0.08);
  color: var(--green);
}

.badge-closed {
  background: rgba(71, 85, 105, 0.08);
  color: var(--t2);
}

.badge-cancelled {
  background: rgba(244, 63, 94, 0.08);
  color: var(--red);
}

/* Priority Badges */
.badge-low {
  background: rgba(148, 163, 184, 0.08);
  color: #64748B;
}

.badge-normal {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}

.badge-high {
  background: rgba(249, 115, 22, 0.08);
  color: var(--orange);
}

.badge-critical {
  background: rgba(244, 63, 94, 0.08);
  color: var(--red);
  animation: pulse-badge-crit 2s infinite;
}

@keyframes pulse-badge-crit {
  0%, 100% { box-shadow: 0 0 0 0 transparent; }
  50% { box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.15); }
}

.badge-role-superadmin { background: rgba(244, 63, 94, 0.08); color: var(--red); }
.badge-role-technician { background: rgba(37, 99, 235, 0.08); color: var(--primary); }
.badge-role-staff      { background: rgba(71, 85, 105, 0.08); color: var(--t2); }

/* ============================================================
   TABLES & FORMS (GLOBAL REDESIGN)
   ============================================================ */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--t4);
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13.5px;
}

.table th {
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--t3);
  white-space: nowrap;
  background: var(--bg-main);
  border-bottom: 1px solid var(--t4);
  text-align: left;
}

.table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--t4);
  vertical-align: middle;
  color: var(--t2);
  background: #FFFFFF;
}

.table tbody tr:last-child td {
  border-bottom: none;
}

.table tbody tr {
  transition: var(--transition);
}

.table tbody tr:hover td {
  background: rgba(37, 99, 235, 0.02);
}

/* Table ticket helper link */
.ticket-no {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
  padding: 4px 10px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  white-space: nowrap;
  display: inline-block;
  transition: var(--transition);
}

.ticket-no:hover {
  background: var(--primary);
  color: #FFFFFF;
  text-decoration: none;
}

/* Forms styling */
.form-group {
  margin-bottom: 20px;
}

label, .form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: #FFFFFF;
  border: 1.5px solid var(--t4);
  border-radius: var(--r-md);
  color: var(--t1);
  font-size: 14px;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3.5px var(--primary-glow);
}

.form-control::placeholder {
  color: var(--t3);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.form-check-input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
  border-radius: 4px;
}

.form-check-label {
  font-size: 13.5px;
  color: var(--t2);
  cursor: pointer;
  font-weight: 600;
  user-select: none;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.form-hint {
  font-size: 12px;
  color: var(--t3);
  margin-top: 6px;
}

.required {
  color: var(--red);
}

.input-icon-wrap {
  position: relative;
}

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

.input-icon-wrap .form-control {
  padding-left: 44px;
}

/* ============================================================
   MODERN LOGIN PAGE LAYOUT
   ============================================================ */
.login-bg {
  min-height: 100vh;
  background: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  position: relative;
  overflow: hidden;
}

/* Blob decorations for login background */
.login-bg::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  top: -200px;
  left: -200px;
  z-index: 1;
}

.login-bg::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  bottom: -200px;
  right: -200px;
  z-index: 1;
}

.login-container-new {
  width: 100%;
  max-width: 1200px;
  background: #FFFFFF;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.login-main-section {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 620px;
}

@media (max-width: 960px) {
  .login-main-section {
    display: block !important;
    min-height: auto !important;
  }
  .login-left-panel {
    display: none !important;
  }
  .login-right-panel {
    width: 100% !important;
    padding: 40px 24px !important;
  }
}

/* Left panel (Gradient, Brand, Illustration) */
.login-left-panel {
  background: #F4F7FB;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.login-illustration-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-illustration-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.login-brand-area {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 5;
}

.login-logo-circle {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.login-logo-circle svg {
  width: 24px;
  height: 24px;
}

.login-brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.login-brand-badge {
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 99px;
  backdrop-filter: blur(5px);
  margin-left: 6px;
}

.login-hero-text {
  margin: 40px 0;
  position: relative;
  z-index: 5;
}

.login-hero-text h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -1px;
}

.login-hero-text p {
  font-size: 16px;
  margin-top: 16px;
  opacity: 0.85;
  max-width: 460px;
  font-weight: 500;
}

/* Feature tags */
.login-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  position: relative;
  z-index: 5;
}

.login-feature-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-md);
  padding: 12px 18px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.login-feature-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.login-feature-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.login-feature-card-info {
  display: flex;
  flex-direction: column;
}

.login-feature-card-title {
  font-size: 13px;
  font-weight: 800;
}

.login-feature-card-desc {
  font-size: 11.5px;
  opacity: 0.8;
}

/* Mini CSS support station illustration */
.login-illustration-area {
  position: relative;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.support-art-container {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-lg);
  padding: 16px 24px;
  backdrop-filter: blur(8px);
}

.support-art-headset {
  font-size: 32px;
  animation: float-headset 3s ease-in-out infinite;
}

@keyframes float-headset {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.support-art-text {
  display: flex;
  flex-direction: column;
}

.support-art-title {
  font-size: 13px;
  font-weight: 800;
}

.support-art-sub {
  font-size: 11px;
  opacity: 0.8;
}

/* Right panel (White Login Form) */
.login-right-panel {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #FFFFFF;
}

/* Padding and ordering for left and right panels on mobile is already set in the main media query above */

.login-form-card {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.login-form-header {
  text-align: center;
  margin-bottom: 32px;
}

.login-form-icon {
  width: 60px;
  height: 60px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
  margin: 0 auto 16px;
}

.login-form-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.5px;
}

.login-form-header p {
  font-size: 13.5px;
  color: var(--t3);
  margin-top: 4px;
  font-weight: 500;
}

.login-form-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.login-form-footer-actions .form-check {
  margin-bottom: 0;
}

.login-forgot-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.login-forgot-link:hover {
  text-decoration: underline;
}

.login-submit-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
  font-weight: 700;
  padding: 13px;
  border-radius: var(--r-md);
  font-size: 14.5px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.login-submit-btn:hover {
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  transform: translateY(-1px);
}

.login-divider-text {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--t3);
  font-size: 12px;
  font-weight: 600;
  margin: 24px 0;
}

.login-divider-text::before, .login-divider-text::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--t4);
}

.login-divider-text:not(:empty)::before {
  margin-right: 12px;
}

.login-divider-text:not(:empty)::after {
  margin-left: 12px;
}

.login-sso-btn {
  background: #FFFFFF;
  border: 1.5px solid var(--t4);
  color: var(--t1);
  padding: 12px;
  border-radius: var(--r-md);
  font-size: 13.5px;
  font-weight: 700;
  cursor: not-allowed;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0.8;
}

.login-sso-btn:hover {
  background: var(--bg-main);
  border-color: var(--t3);
}

.login-secure-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--t3);
  margin-top: 32px;
  font-weight: 500;
}

.login-secure-footer i {
  color: var(--green);
}

/* Bottom Highlight Belt */
.login-bottom-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--bg-main);
  border-top: 1px solid var(--t4);
  padding: 24px 50px;
}

@media (max-width: 800px) {
  .login-bottom-highlights {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 24px;
  }
}
@media (max-width: 500px) {
  .login-bottom-highlights {
    grid-template-columns: 1fr;
  }
}

.login-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.login-highlight-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.login-highlight-icon-circle.h-red { color: var(--red); }
.login-highlight-icon-circle.h-teal { color: var(--teal); }
.login-highlight-icon-circle.h-purple { color: var(--purple); }
.login-highlight-icon-circle.h-green { color: var(--green); }

.login-highlight-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.login-highlight-title {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--t1);
}

.login-highlight-desc {
  font-size: 11px;
  color: var(--t3);
}

/* Top bar security label inside login screen */
.login-top-alert {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--t4);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--t2);
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(5px);
  z-index: 10;
}

.login-top-alert i {
  color: var(--red);
}

/* ============================================================
   RESPONSIVE LAYOUT GRIDS
   ============================================================ */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(calc(-1 * var(--sidebar-w)));
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .main-wrapper {
    margin-left: 0 !important;
  }
  .topbar {
    padding: 0 12px;
    gap: 10px;
  }
  .content {
    padding: 12px;
  }
  .topbar-search {
    display: none;
  }
  .topbar-welcome {
    display: none;
  }
  .topbar-user {
    padding: 6px 8px;
  }
  .topbar-right {
    gap: 8px;
  }
}

/* Helper layout classes for other pages */
.def-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .def-grid {
    grid-template-columns: 1fr;
  }
}

.filter-row {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-row .form-group {
  margin-bottom: 0;
  flex: 1;
  min-width: 150px;
}

.filter-form {
  width: 100%;
}

