body {
    font-size: 0.95rem;
}

.card {
    border-radius: 14px;
}

.display-6 {
    font-weight: 700;
}
.posteingang-kachel {
    cursor: pointer;
    border-radius: 18px;
    transition: all 0.2s ease;
}

.posteingang-kachel:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.12) !important;
}
.dashboard-body {
    background: linear-gradient(180deg, #f7f7f7 0%, #efefef 100%);
    min-height: 100vh;
}

.dashboard-hero {
    padding-top: 5px;
    margin-bottom: 30px;
}

.dashboard-wappen {
    height: 120px;
    width: auto;
    display: block;
    margin: 0 auto 15px auto;
    opacity: 0.95;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.dashboard-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e2a3a;
    margin: 0;
}

.dashboard-subtitle {
    font-size: 1rem;
    color: #5f6b7a;
}

.dashboard-status {
    margin-top: 10px;
}

.dashboard-status-item {
    background: #ffffff;
    border-radius: 999px;
    padding: 10px 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    color: #2f3a48;
    font-size: 0.95rem;
}

.dashboard-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 16px;
    text-align: center;
    cursor: pointer;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.22s ease;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    border: 1px solid #ececec;
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.dashboard-card-logout {
    border: 1px solid #f1d0d0;
}

.dashboard-icon {
    font-size: 1.6  rem;
    margin-bottom: 8px;
}

.dashboard-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.dashboard-card-count {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1.2;
    min-height: 48px;
}

.dashboard-card-text {
    color: #6b7280;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .dashboard-title {
        font-size: 2rem;
    }

    .dashboard-wappen {
        height: 70px;
    }

    .dashboard-card {
        min-height: 180px;
    }
}
@media (max-width: 768px) {
    .dashboard-wappen {
        height: 80px;
    }
}
/* Login-Panel */
.dashboard-login-wrap {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 30px;
}

.dashboard-login-panel {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10);
    border: 1px solid #ececec;

    opacity: 0;
    transform: translateY(-40px);
    animation: loginSlideIn 0.7s ease forwards;
}

@keyframes loginSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Kacheln anfangs unsichtbar */
.dashboard-card {
    opacity: 0;
    transform: translateY(20px);
}

/* Wenn Dashboard aktiv ist */
.dashboard-card.show {
    animation: cardFadeIn 0.55s ease forwards;
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}