.empty-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--rz-base-200);
}

.login-card {
    width: 100%;
    max-width: 400px;
}

.summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.summary-card {
    text-align: center;
}

.summary-card .rz-text-h3 {
    color: var(--rz-primary);
}

.badge-active {
    background-color: var(--rz-success);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.badge-disabled {
    background-color: var(--rz-danger);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.85rem;
}
