:root {
    --brand-anthracite: #5b636d;
    --brand-anthracite-dark: #454b53;
    --brand-blue: #4a7096;
    --brand-blue-dark: #3a5a79;
    --brand-bg: #f8f9fa;
}

html, body {
    height: 100%;
}

body {
    background-color: var(--brand-bg);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-content {
    flex: 1 0 auto;
}

.navbar-brand img {
    height: 26px;
    vertical-align: middle;
}

.logo-chip {
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
}

.brand-card {
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    background-color: #fff;
}

.brand-card.accent-anthracite {
    border-top: 3px solid var(--brand-anthracite);
}

.brand-card.accent-blue {
    border-top: 3px solid var(--brand-blue);
}

.brand-card .card-header {
    background: linear-gradient(to right, #eceff1, #dde2e6);
    font-weight: bold;
    border-bottom: none;
}

.brand-card.accent-blue .card-header {
    background: linear-gradient(to right, #e4edf5, #c2d5e6);
}

.btn-brand-anthracite {
    background-color: var(--brand-anthracite);
    border-color: var(--brand-anthracite);
    color: #fff;
}

    .btn-brand-anthracite:hover,
    .btn-brand-anthracite:focus,
    .btn-brand-anthracite:active {
        background-color: var(--brand-anthracite-dark);
        border-color: var(--brand-anthracite-dark);
        color: #fff;
    }

.btn-brand-blue {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #fff;
}

    .btn-brand-blue:hover,
    .btn-brand-blue:focus,
    .btn-brand-blue:active {
        background-color: var(--brand-blue-dark);
        border-color: var(--brand-blue-dark);
        color: #fff;
    }

/* Navbar: sanftes Anthrazit statt hartem Schwarz */
.brand-navbar {
    background: linear-gradient(to bottom, #6b737c, var(--brand-anthracite));
}

/* Hero-Bereich auf der Startseite: weicher Anthrazit-Blau-Verlauf statt Schwarz */
.hero-banner {
    background: linear-gradient(120deg, var(--brand-anthracite), var(--brand-blue));
    color: #fff;
    border-radius: 8px;
    padding: 40px 35px;
    margin-bottom: 30px;
}

    .hero-banner h1 {
        font-weight: bold;
        font-size: 2rem;
    }

    .hero-banner p {
        font-size: 1.15rem;
        color: #eef1f3;
    }

/* Einheitlich breite Status-Badges (Dashboard, Ticket-Details, Status-Check) */
.status-badge {
    display: inline-block;
    width: 130px;
    text-align: center;
    font-weight: normal;
    font-size: 0.85rem;
    padding: 0.4em 0.6em;
}

/* Footer im Stil von vereinspauschale.de */
.brand-footer {
    flex-shrink: 0;
    background-color: var(--brand-anthracite);
    min-height: 70px;
    display: flex;
    align-items: center;
    margin-top: 40px;
}

    .brand-footer a {
        color: #fff;
        text-decoration: none;
        font-weight: normal;
    }

        .brand-footer a:hover {
            text-decoration: underline;
        }

    .brand-footer .footer-links {
        text-align: center;
        color: #fff;
        margin: 0;
    }

    .brand-footer .footer-bottom {
        margin: 6px 0 0 0;
        text-align: center;
        color: #fff;
        font-size: 0.95rem;
    }
