:root {
    --heron-primary: #e6b71b;
    --heron-primary-dark: #cc9408;
    --heron-text: #333333;
    --heron-subtle-bg: #f4f4f4;
}

body {
    font-family: 'Roboto', 'Helvetica Neue', sans-serif;
    font-weight: 300;
    color: var(--heron-text);
    background-color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.btn-primary {
    background-color: var(--heron-primary) !important;
    border: none !important;
    color: white !important;
    text-transform: uppercase;
}

    .btn-primary:hover, .btn-primary:focus {
        background-color: var(--heron-primary-dark) !important;
        color: white !important;
        outline: none !important;
        box-shadow: none !important;
    }

/* Der weiße Header mit dem zentrierten Logo */
.heron-header {
    background-color: white;
    padding: 15px 0;
    border-bottom: 2px solid var(--heron-subtle-bg);
}

.heron-header-logo {
    max-width: 200px;
    height: auto;
}

/* Seitentitel in Senfgelb (wie "Admin" / "Accounts" im Screenshot) */
.heron-page-title {
    color: var(--heron-primary-dark);
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

/* Das rahmenlose, graue Suchfeld */
.heron-search-input {
    background-color: var(--heron-subtle-bg);
    border: none;
    border-radius: 4px;
    padding: 18px 20px;
    font-family: 'Roboto', sans-serif;
    color: var(--heron-text);
    box-shadow: none !important;
}

    .heron-search-input:focus {
        background-color: #e0e0e0;
        outline: none;
    }

/* Die Hire Hub Tabelle */
.heron-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    background-color: white;
}

    .heron-table thead {
        background-color: var(--heron-primary-dark);
        color: white;
    }

    .heron-table th {
        padding: 16px;
        font-weight: 400;
        text-align: left;
        border: none;
    }

    .heron-table td {
        padding: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        vertical-align: middle;
    }

/* Der massive Footer */
.heron-footer {
    background-color: var(--heron-primary-dark);
    color: white;
    padding: 3rem 0;
    margin-top: auto;
}

    .heron-footer a {
        color: white;
        text-decoration: none;
    }

        .heron-footer a:hover {
            text-decoration: underline;
        }

/* Preferred Badge */
.badge-preferred {
    background-color: var(--heron-subtle-bg);
    color: var(--heron-text);
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    /* Seitentitel etwas verkleinern */
    .heron-page-title {
        font-size: 2.2rem;
    }

    /* Suchfeld etwas kompakter machen */
    .heron-search-input {
        padding: 12px 15px;
    }

    /* Header-Logo verkleinern */
    .heron-header-logo {
        max-width: 160px;
    }

    /* Footer-Padding reduzieren */
    .heron-footer {
        padding: 2rem 0;
    }

    /* Hauptbereich-Padding reduzieren, damit auf dem Handy mehr Platz für Daten ist */
    main.container {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
}
