﻿/* Keine Rounded-Spielereien */
.mud-paper,
.mud-card {
    border-radius: 4px !important;
}

/* Buttons nicht "material bubbly" */
.mud-button {
    letter-spacing: 0.3px;
}

/* Tabellen technisch & kompakt */
.mud-table-cell {
    padding-top: 6px;
    padding-bottom: 6px;
}

.mud-button {
    text-transform: none;
}

.mud-button:disabled {
    opacity: 1; /* MudBlazor setzt sonst ~0.38 */
}


.mud-tabs-toolbar {
    background-color: var("--mud-palette-surface");
}


html {
    font-size: 90%;   /* ≈ STRG + - einmal */
}

.mud-table {
    --mud-table-cell-padding-y: 6px;
}

/* Seite ganz normal */
.login-page-root {


    display: block;
    margin-top: -64px;
}

/* Der Balken – bewusst positioniert */
.login-stage {
    width: 100%;
    display: flex;
    justify-content: center;

    padding-top: 96px;   /* <<< DAS ist der Schlüssel */
    padding-bottom: 64px;
}

/* Farben */
.login-stage-light {
    background-color: rgba(0, 0, 0, 0.06);
}

.login-stage-dark {
    background-color: rgba(0, 0, 0, 0.85);
}

/* Inhaltsbreite */
.login-stage-inner {
    width: 100%;
    max-width: 720px;
    padding: 0 16px;
}

/* Card */
.login-card {
    width: 100%;
}
