/* ================================
   Variables
================================ */
:root {
  --navy: #0b1325;
  --navy-2: #0a1020;
  --soft-bg: #eef2f7;
}

/* ================================
   Global
================================ */
body {
  background: var(--soft-bg);
}

/* ================================
   Top Header / Hero
================================ */
.top-hero {
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(10, 16, 32, 0.25);
  padding: 22px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ================================
   Cards
================================ */
.card-soft {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.card-soft .card-header {
  background: #ffffff;
  border-bottom: 0;
  border-top-left-radius: 16px !important;
  border-top-right-radius: 16px !important;
}

/* ================================
   Typography
================================ */
.section-title {
  font-weight: 700;
}

.subtle {
  color: #6b7280;
}

/* ================================
   Tables
================================ */
.table-head-navy {
  background-color: var(--navy);
  color: #ffffff;
}

.table-head-navy th {
  border-bottom: 0;
}

.table td {
  vertical-align: middle;
}

/* ================================
   Badges
================================ */
.pill-role {
  background-color: #0d6efd;
  color: #ffffff;
}

/* ================================
   Buttons
================================ */
.btn-outline-soft {
  background-color: #ffffff;
  border: 1px solid #cfe0ff;
  color: #0b5ed7;
}

.btn-outline-soft:hover {
  background-color: #0b5ed7;
  border-color: #0b5ed7;
  color: #ffffff;
}

/* ================================
   Utility
================================ */
.rounded-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
}
