:root {
    /* DARK THEME (Default) */
    --bg-app: #000000;
    --bg-card: #121212;
    --bg-card-rgb: 18, 18, 18;
    --border-card: #222222;
    --text-main: #ffffff;
    --text-muted: #999999;
    --paytm-blue: #00baf2;
    --paytm-blue-dark: #008eb8;
    --result-green: #00e676;
    --warning-red: #ff5252;
    --accent-blue: #002970;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    --input-bg: #252525;
}

body.light-theme {
    --bg-app: #f4f7f9;
    --bg-card: #ffffff;
    --bg-card-rgb: 255, 255, 255;
    --border-card: #e0e0e0;
    --text-main: #1d252d;
    --text-muted: #6b778c;
    --accent-blue: #e3f2fd;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --input-bg: #f5f5f5;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-app);
    color: var(--text-main);
    line-height: 1.5;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

.app-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-app);
    min-height: 100vh;
    padding-bottom: 40px;
}

/* SECTION HEADER */
.brand-header {
    background-color: var(--bg-card);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border-card);
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--paytm-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: white;
}

.brand-info h1 {
    font-size: 18px;
    font-weight: 700;
}

.brand-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* HERO / BANNER */
.hero-banner {
    padding: 24px 20px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--bg-app) 100%);
    text-align: left;
    margin-bottom: 10px;
}

.hero-banner h2 {
    font-size: 24px;
    color: var(--text-main);
    margin-bottom: 10px;
}

/* ROLE SWITCHER */
.role-switcher-container {
    padding: 0 20px 20px;
    background: linear-gradient(180deg, var(--bg-app) 0%, transparent 100%);
}

.role-switcher {
    display: flex;
    background: var(--input-bg);
    padding: 4px;
    border-radius: 12px;
    border: 1px solid var(--border-card);
}

.role-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.role-btn.active {
    background: var(--paytm-blue);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 186, 242, 0.3);
}

/* RECRUITER DASHBOARD */
.recruiter-dashboard {
    padding: 0 15px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.stat-card {
    background: var(--bg-card);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--border-card);
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--paytm-blue);
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.trend-up { color: #00c853; font-size: 10px; }

/* MINI CHARTS */
.mini-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 30px;
    margin-top: 8px;
    justify-content: center;
}

.bar {
    width: 6px;
    background: var(--paytm-blue);
    border-radius: 2px;
    opacity: 0.5;
}

.bar.highlight { opacity: 1; }

.availability-card {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-card);
    padding: 15px;
    margin-bottom: 15px;
}

.candidate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-card);
}

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

.job-info { display: flex; align-items: center; gap: 10px; }
.job-icon { font-size: 18px; }
.job-name { font-size: 14px; font-weight: 500; }
.job-count { font-size: 14px; font-weight: 700; color: var(--paytm-blue); }

.supply-tag {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}
.supply-low { background: rgba(255, 82, 82, 0.1); color: var(--warning-red); }
.supply-high { background: rgba(0, 200, 83, 0.1); color: #00c853; }

.readiness-container {
    margin-top: 15px;
    background: var(--bg-card);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--border-card);
}

.progress-bar {
    height: 8px;
    background: var(--input-bg);
    border-radius: 4px;
    overflow: hidden;
    margin: 8px 0;
}

.progress-fill {
    height: 100%;
    background: var(--paytm-blue);
    width: 0;
    transition: width 1s ease-out;
}

.premium-cta {
    background: linear-gradient(135deg, var(--paytm-blue) 0%, #002970 100%);
    color: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 10px 20px rgba(0, 186, 242, 0.2);
}

.hero-banner p {
    color: var(--text-muted);
    font-size: 14px;
}

/* CARDS */
.section-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 20px;
    margin: 15px;
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow);
    scroll-margin-top: 110px; /* Accounts for sticky quick tools */
}

.section-card h3 {
    font-size: 17px;
    margin-bottom: 16px;
    color: var(--paytm-blue);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0; /* Override if in flex header */
}

/* HEADER WITH ACTIONS */
.header-with-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.premium-select-mini {
    background: var(--input-bg);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: 4px 4px 8px #bebebe, -4px -4px 8px #ffffff;
    cursor: pointer;
    margin-right: 15px;
    outline: none;
}

body.light-theme .premium-select-mini {
    box-shadow: 4px 4px 8px #bebebe, -4px -4px 8px #ffffff;
}

.input-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* NEUMORPHIC THEME SWITCH */
.neumorphic-switch {
    position: relative;
    display: inline-block;
    width: 140px;
    height: 50px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.neumorphic-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #111111;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: inset 6px 6px 12px rgba(0,0,0,0.5), 
                inset -6px -6px 12px rgba(255,255,255,0.02);
}

.switch-thumb {
    position: absolute;
    height: 40px;
    width: 40px;
    left: 5px;
    bottom: 5px;
    background: #ffffff;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 15px rgba(0,0,0,0.6);
    z-index: 5;
}

.thumb-icon {
    font-size: 22px;
}

.label-light, .label-dark {
    font-size: 7px;
    font-weight: 800;
    color: #555;
    letter-spacing: 0.3px;
    transition: 0.3s;
    z-index: 1;
    pointer-events: none;
    width: 40px;
    text-align: center;
    line-height: 1;
}

/* Light Mode specific shadows */
body.light-theme .switch-slider {
    background: #e8e8e8;
    border-color: rgba(255,255,255,0.8);
    box-shadow: inset 8px 8px 16px #cacaca, 
                inset -8px -8px 16px #ffffff;
}

body.light-theme .switch-thumb {
    background: #f0f0f0;
    box-shadow: 6px 6px 12px #bebebe, 
                -6px -6px 12px #ffffff;
}

input:checked + .switch-slider .switch-thumb {
    transform: translateX(90px);
}

input:checked + .switch-slider .label-light {
    color: var(--paytm-blue);
    opacity: 1;
}

input:not(:checked) + .switch-slider .label-dark {
    color: #ffffff;
    opacity: 1;
}

body.light-theme input:not(:checked) + .switch-slider .label-dark {
    color: var(--paytm-blue);
}

input:checked + .switch-slider .label-dark {
    opacity: 0.1;
}

input:not(:checked) + .switch-slider .label-light {
    opacity: 0.1;
}

/* MINI DROPDOWN REMOVED */

/* GRID LAYOUTS (Consolidated below) */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.tool-item {
    background: var(--input-bg);
    border-radius: 12px;
    padding: 8px 4px;
    text-align: center;
    border: 1px solid var(--border-card);
    cursor: pointer;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.tool-item:active {
    transform: scale(0.95);
    background: var(--border-card);
}

.tool-icon {
    font-size: 20px;
    margin: 4px 0;
    display: block;
}

.tool-top {
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--paytm-blue);
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.tool-bottom {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
}

/* STICKY CLASS FOR NAV */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    margin: 0 15px 15px 15px !important; /* No top margin to avoid gap while sticking */
    background: rgba(var(--bg-card-rgb), 0.9) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-theme .sticky-nav {
    background: rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* INPUTS */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-muted);
}

input[type="number"],
input[type="text"],
input[type="tel"],
select {
    width: 100%;
    padding: 14px;
    background: var(--input-bg);
    border: 1px solid var(--border-card);
    border-radius: 10px;
    font-size: 16px;
    color: var(--text-main);
    font-family: inherit;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--paytm-blue);
}

/* SWITCH COMPONENT */
.switch-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-card);
}

.switch-group:last-child {
    border-bottom: none;
}

.switch-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--input-bg);
  transition: .4s;
  border-radius: 34px;
  border: 1px solid var(--border-card);
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--paytm-blue);
  border-color: var(--paytm-blue);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--paytm-blue);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

/* BUTTONS */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--paytm-blue);
    color: white;
    width: 100%;
}

.btn-primary:active {
    background-color: var(--paytm-blue-dark);
}

/* PROGRESSION LOADING */
.loading-overlay {
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-card);
    border-top: 4px solid var(--paytm-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* RESULTS AREA */
.results-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 20px;
    margin-top: 20px;
    color: #1d252d; /* High contrast dark text */
    border: 2px solid var(--result-green);
    box-shadow: 0 8px 24px rgba(0, 230, 118, 0.2);
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #eeeeee;
}

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

.result-label {
    font-size: 14px;
    font-weight: 500;
    color: #6b778c;
}

.result-value {
    font-size: 20px;
    font-weight: 800;
    color: #1d252d;
}

.result-value.green {
    color: var(--result-green);
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

/* BUTTON GROUPS & CHIPS */
.btn-group, .toggle-group, .moving-selection {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-toggle, .btn-moving, .btn-chip, .select-btn {
    flex: 1;
    background: var(--input-bg);
    border: 1px solid var(--border-card);
    padding: 12px;
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-family: inherit;
}

.btn-chip {
    padding: 8px 12px;
    flex: none;
    min-width: 80px;
}

.btn-toggle.active, .btn-moving.active, .btn-chip.active, .select-btn.active {
    background: rgba(0, 186, 242, 0.1);
    border-color: var(--paytm-blue);
    color: var(--paytm-blue);
}

.btn-toggle:active, .btn-moving:active, .btn-chip:active, .select-btn:active {
    transform: scale(0.95);
}

.icon-lg {
    font-size: 24px;
    margin-bottom: 4px;
}

/* TABLE ENHANCEMENTS */
.data-table-container {
    overflow-x: auto;
    margin-top: 10px;
    border-radius: 12px;
    border: 1px solid var(--border-card);
}

.data-table th {
    background: var(--input-bg);
    text-align: left;
    padding: 12px 10px;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.data-table td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--border-card);
    font-size: 14px;
    white-space: nowrap;
    color: var(--text-main);
}

/* UTILS */
.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    padding: 12px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

/* TABLE STYLES */
.data-table {
    width: 100%;
    border-collapse: collapse;
}

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

/* UPLOAD AREA */
.upload-area {
    border: 2px dashed var(--border-card);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--input-bg);
}

.upload-area:hover {
    border-color: var(--paytm-blue);
    background: rgba(0, 186, 242, 0.05);
}

.upload-area .icon {
    display: block;
    font-size: 24px;
    margin-bottom: 8px;
}

#upload-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.spinner-small {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid var(--border-card);
    border-top-color: var(--paytm-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 5px;
}

/* SMART JOB ANALYSIS STYLES */
.analytics-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.analytics-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid var(--border-card);
    transition: transform 0.2s;
    position: relative;
    overflow: hidden;
}

.analytics-card .card-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

/* Score Card */
.score-display {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-main);
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 10px 0;
}

.score-total {
    font-size: 16px;
    color: var(--text-muted);
    margin-left: 4px;
}

.score-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
}

/* Comparison Card */
.comparison-text {
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 8px;
}

.comparison-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--paytm-blue);
    margin-bottom: 8px;
}

.comparison-status {
    font-size: 14px;
    font-weight: 700;
}

/* Loss Card */
.loss-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
}

.loss-row.highlight {
    font-weight: 700;
    color: var(--warning-red);
    font-size: 15px;
    margin-top: 5px;
}

.loss-total-box {
    margin-top: 15px;
    background: rgba(255, 82, 82, 0.1);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--warning-red);
}

.loss-total-box span {
    font-size: 20px;
    display: block;
    margin-bottom: 2px;
}

/* Card States */
.analytics-card.good { border-left: 5px solid var(--result-green); }
.analytics-card.average { border-left: 5px solid #ffb74d; }
.analytics-card.risky { border-left: 5px solid var(--warning-red); }

/* Buttons */
.btn-whatsapp-outline {
    background: transparent;
    border: 1px solid #25d366;
    color: #25d366;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 14px;
}

.btn-whatsapp-outline:hover {
    background: rgba(37, 211, 102, 0.1);
}

/* CONVERSATION GUIDE STYLES */
.risk-badge {
    text-transform: uppercase;
}
.risk-badge.low { background: rgba(0, 230, 118, 0.1); color: var(--result-green); border: 1px solid var(--result-green); }
.risk-badge.medium { background: rgba(255, 183, 77, 0.1); color: #ffb74d; border: 1px solid #ffb74d; }
.risk-badge.high { background: rgba(255, 82, 82, 0.1); color: var(--warning-red); border: 1px solid var(--warning-red); }

.script-bubble {
    background: var(--input-bg);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-card);
    position: relative;
    box-shadow: var(--shadow);
}

.message-content {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-main);
    white-space: pre-line;
    font-style: italic;
    padding: 10px;
    background: rgba(var(--bg-card-rgb), 0.5);
    border-radius: 8px;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    font-weight: 700;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

body.light-theme .script-bubble {
    box-shadow: 4px 4px 8px #bebebe, -4px -4px 8px #ffffff;
}

/* RECRUITER DASHBOARD SPECIFIC */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.stat-card {
    background: var(--bg-card);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--border-card);
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-main);
}

.trend-up {
    font-size: 11px;
    font-weight: 700;
    color: #00c853;
}

.trend-down {
    font-size: 11px;
    font-weight: 700;
    color: #ff5252;
}

.mini-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 30px;
    margin-top: 10px;
}

.mini-bar-chart .bar {
    flex: 1;
    background: var(--border-card);
    border-radius: 2px;
}

.mini-bar-chart .bar.highlight {
    background: var(--paytm-blue);
}

.recruiter-dashboard .availability-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.candidate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-card);
}

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

.job-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.job-icon {
    font-size: 20px;
    background: rgba(var(--bg-card-rgb), 0.5);
    padding: 8px;
    border-radius: 8px;
}

.job-name {
    font-size: 14px;
    font-weight: 600;
}

.supply-tag {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.supply-low { background: rgba(255, 82, 82, 0.1); color: #ff5252; }
.supply-high { background: rgba(0, 200, 83, 0.1); color: #00c853; }

.job-count {
    font-size: 15px;
    font-weight: 700;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: var(--text-muted);
}
