:root {
    --voyage-primary: #1769aa;
    --voyage-soft: #eef7ff;
}

body {
    background: #f6f8fb;
    color: #1f2937;
}

.auth-screen {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, #e7f3ff, #ffffff);
}

.auth-card {
    width: min(100%, 430px);
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 20px 45px rgba(16, 24, 40, .12);
}

.stat-card, .panel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(16, 24, 40, .04);
}

.stat-card i {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-grid;
    place-items: center;
    color: var(--voyage-primary);
    background: var(--voyage-soft);
    border-radius: 8px;
}

.table-responsive {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.empty-state {
    max-width: 560px;
    margin: 4rem auto;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
}

.badge-status {
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .table {
        font-size: .875rem;
    }
}
