/* Ergänzungen der Administrationsoberfläche zu shared/css/app.css (Stile der Hauptanwendung) */

/* Bezeichnung „Administration“ neben dem Logo */
.admin-label {
    display: inline-flex; align-items: center; height: 28px; padding: 0 12px;
    border-radius: 999px; background: #09569a; color: #fff;
    font-size: 13.5px; font-weight: 700; letter-spacing: .01em; white-space: nowrap;
}
.admin-shell .topbar .brand { display: inline-flex; gap: 12px; }
.admin-shell .topbar .brand .admin-label { display: inline-flex; }

/* Anmeldung: eine zentrierte Karte ohne Werbespalte */
.admin-login .auth-main { min-height: 100dvh; }
.admin-brand { display: flex; align-items: center; justify-content: center; gap: 12px; }
.admin-login .auth-head { text-align: center; }

@media (max-width: 640px) {
    .admin-shell .topbar .brand-logo { height: 32px; }
    .admin-label { height: 24px; padding: 0 9px; font-size: 12px; }
}

/* Status und Super-Admin nebeneinander */
.badge-row { display: inline-flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.admin-badge { gap: 4px; }
.admin-badge svg { width: 12px; height: 12px; }


/* Startseite: Bereiche als Kacheln */
.admin-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); gap: 20px; }
.admin-tile {
    display: flex; align-items: flex-start; gap: 16px; padding: 22px;
    color: var(--ink-800); text-decoration: none; transition: border-color .15s, box-shadow .15s, transform .15s;
}
.admin-tile:hover { color: var(--ink-900); border-color: var(--blue-300); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.admin-tile:focus-visible { outline: none; box-shadow: var(--ring); }
.admin-tile-icon {
    flex: none; width: 48px; height: 48px; border-radius: 14px;
    display: grid; place-items: center; background: var(--blue-50); color: var(--blue-500);
}
.admin-tile-icon svg { width: 24px; height: 24px; }
.admin-tile-text { display: grid; gap: 4px; min-width: 0; }
.admin-tile-text strong { font-size: 16.5px; font-weight: 700; }
.admin-tile-text small { font-size: 13.5px; color: var(--ink-500); line-height: 1.45; }
.admin-tile-arrow { flex: none; width: 18px; height: 18px; margin-left: auto; align-self: center; color: var(--ink-300); transition: transform .15s, color .15s; }
.admin-tile:hover .admin-tile-arrow { transform: translateX(3px); color: var(--blue-500); }

/* Startseite: Begrüßung wie auf der Übersicht der Hauptanwendung */
.admin-hero .hero-main h1 { max-width: 720px; }
.admin-hero-icon {
    width: 88px; height: 88px; border-radius: 24px; display: grid; place-items: center;
    background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .22); backdrop-filter: blur(6px);
}
.admin-hero-icon svg { width: 44px; height: 44px; }
@media (max-width: 640px) {
    .admin-hero { grid-template-columns: minmax(0, 1fr); }
    .admin-hero-icon { display: none; }
}

/* Firma löschen: Übersicht der betroffenen Daten im Dialog */
.delete-summary { padding: 4px 0; }
