
:root {
    --fundi-primary: #0b3d91;
    --fundi-accent: #ff8c32;
    --fundi-card-bg: #ffffff;
    --fundi-muted: #6c7688;
}

html {
  font-size: 16px;
  position: relative;
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f3f4f6;
  color: #0b1526;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}



.dashboard-wrapper {
  background: linear-gradient(135deg, rgba(11, 61, 145, 0.05), rgba(255, 140, 50, 0.05));
  min-height: 100vh;
}

.page-header h1 {
  color: var(--fundi-primary);
}

.bg-accent {
  background-color: var(--fundi-accent) !important;
}

.stat-card,
.agent-card,
.queue-card,
.card {
  border: none;
  border-radius: 1rem;
  background-color: var(--fundi-card-bg);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.stat-card {
  padding: 1.5rem;
}

.stat-card h6 {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08rem;
  color: var(--fundi-muted);
}

.stat-card .stat-value {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--fundi-primary);
}

.agent-card,
.queue-card {
  padding: 1rem;
  border: 1px solid rgba(11, 61, 145, 0.05);
}

.agent-card h6,
.queue-card h6 {
  color: var(--fundi-primary);
}

.badge {
  font-weight: 500;
}

.table thead th {
  font-size: 0.75rem;
  letter-spacing: 0.06rem;
  color: var(--fundi-muted);
  border-bottom: 1px solid rgba(11, 61, 145, 0.1);
}

.table tbody td {
  vertical-align: middle;
}

.card-title {
  font-weight: 600;
  color: var(--fundi-primary);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--fundi-accent);
  box-shadow: 0 0 0 0.2rem rgba(255, 140, 50, 0.25);
}

.dashboard-wrapper {
    background: radial-gradient(circle at top, #f5f7fb 0%, #fefefe 55%, #f9fafc 100%);
    min-height: calc(100vh - 72px);
}

.dashboard-hero {
    background: linear-gradient(135deg, #0b3d91, #1f8ef1);
    border-radius: 28px;
    padding: clamp(1.75rem, 4vw, 2.75rem);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #fff;
    box-shadow: 0 25px 45px rgba(11, 61, 145, .25);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 0.65rem;
}

.hero-subtitle {
   /* max-width: 540px;*/
    font-size: 1.05rem;
    opacity: .92;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.hero-tag {
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .15);
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-indicator {
    display: flex;
    align-items: center;
    gap: .65rem;
    background: rgba(255, 255, 255, .16);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-weight: 600;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffc107;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

.summary-card {
    background: #fff;
    border-radius: 20px;
    padding: 0.75rem;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.summary-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
}

.summary-label {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .78rem;
    color: #64748b;
    margin-bottom: .25rem;
}

.summary-value {
    font-size: 2.3rem;
    font-weight: 600;
    margin: 0;
}

.summary-hint {
    margin: 0;
    color: #94a3b8;
    font-size: .9rem;
}

.card {
    border-radius: 24px;
    border: none;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
}

.agent-card,
.queue-card {
    border-radius: 16px;
    border: 1px solid #edf2ff;
    padding: 1rem;
    background: #fff;
}

table thead th {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .82rem;
    color: #94a3b8;
    border-bottom: 1px solid #e2e8f0 !important;
}

.empty-state {
    text-align: center;
    padding: 2.5rem 1rem;
    color: #94a3b8;
}

    .empty-state span {
        font-size: 2.4rem;
        display: block;
        margin-bottom: 1rem;
    }

.login-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(11, 61, 145, 0.18), transparent 32%),
        radial-gradient(circle at bottom right, rgba(255, 140, 50, 0.16), transparent 30%),
        linear-gradient(180deg, #f7faff 0%, #f3f6fb 100%);
    min-height: calc(100vh - 72px);
}

.login-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(6px);
    pointer-events: none;
}

.login-orb-one {
    width: 220px;
    height: 220px;
    top: -70px;
    left: -60px;
    background: rgba(27, 104, 214, 0.14);
}

.login-orb-two {
    width: 280px;
    height: 280px;
    right: -110px;
    bottom: -120px;
    background: rgba(255, 140, 50, 0.12);
}

.min-vh-75 {
    min-height: 75vh;
}

.login-brand-panel {
    background: linear-gradient(135deg, #0b3d91 0%, #1867c7 55%, #2b8cff 100%);
    color: #fff;
    border-radius: 32px;
    padding: clamp(1.75rem, 4vw, 3rem);
    box-shadow: 0 25px 50px rgba(11, 61, 145, 0.25);
}

.brand-badge {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.login-kicker {
    letter-spacing: 0.25em;
    opacity: 0.8;
}

.login-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.login-copy {
    max-width: 32rem;
    font-size: 1.02rem;
    line-height: 1.7;
    opacity: 0.92;
}

.login-highlights {
    margin-top: 2rem;
    display: grid;
    gap: 0.85rem;
}

.login-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.login-footnote {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.login-footnote-pill {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.login-highlight-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffcf74;
    box-shadow: 0 0 0 5px rgba(255, 207, 116, 0.15);
    flex: 0 0 auto;
}

.login-card {
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
}

.login-card-topbar {
    display: flex;
    gap: 0.45rem;
}

.login-card-accent {
    width: 1.3rem;
    height: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--fundi-primary), var(--fundi-accent));
}

.login-card .form-control {
    border-radius: 14px;
    min-height: 3.25rem;
    border-color: #d9e2ef;
}

.login-card .form-check-input {
    width: 1.1rem;
    height: 1.1rem;
}

.login-submit {
    border-radius: 14px;
    box-shadow: 0 16px 30px rgba(11, 61, 145, 0.22);
}

.login-card-footer {
    padding-top: 0.5rem;
}

.wizard-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.wizard-step {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: #eef2ff;
    color: #64748b;
    font-weight: 600;
}

.wizard-step.active {
    background: linear-gradient(135deg, var(--fundi-primary), #1f8ef1);
    color: #fff;
    box-shadow: 0 12px 24px rgba(11, 61, 145, 0.18);
}

.summary-box {
    background: #f8fbff;
    border: 1px solid #dbe7ff;
    border-radius: 20px;
    padding: 1.25rem;
}
