/* =========================
   RECHNER – GLOBAL WRAPPER
========================= */

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    background: linear-gradient(135deg, #eef2f3, #dfe9f3);
    color: #1f2937;
}

/* =========================
   CARD SYSTEM (MATCH DEIN DESIGN)
========================= */

.card {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    margin-top: 16px;

    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* =========================
   FORM ELEMENTE
========================= */

select,
button {
    width: 100%;
    padding: 12px;
    margin: 8px 0;

    border-radius: 12px;
    border: 1px solid #cbd5e1;

    font-size: 14px;

    transition: all 0.25s ease;
}

/* FOCUS STATE */
select:focus {
    outline: none;
    border-color: #2bb673;
    box-shadow: 0 0 6px rgba(43,182,115,0.25);
}

/* =========================
   BUTTON (MODERN GREEN STYLE)
========================= */

button {
    background: linear-gradient(135deg, #2bb673, #22c55e);
    color: white;

    font-weight: 600;
    cursor: pointer;

    border: none;

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

button:active {
    transform: translateY(0px);
}

/* =========================
   BADGES (SYSTEM WIE DEIN DESIGN)
========================= */

.badge {
    padding: 6px 10px;
    border-radius: 999px;

    font-size: 12px;
    display: inline-block;

    margin: 3px;
    font-weight: 600;
}

/* STATUS COLORS */
.green {
    background: #dcfce7;
    color: #166534;
}

.orange {
    background: #fef3c7;
    color: #92400e;
}

.blue {
    background: #dbeafe;
    color: #1e40af;
}

/* =========================
   CHARTS
========================= */

canvas {
    margin-top: 12px;
    max-width: 100%;

    border-radius: 14px;

    background: #ffffff;
    padding: 12px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
}

/* =========================
   GRID SYSTEM
========================= */

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* =========================
   CHART LAYOUT
========================= */

.chart-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 16px;
}

.chart-box {
    flex: 1;
    min-width: 280px;

    padding: 16px;
    border-radius: 16px;

    background: #ffffff;

    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

/* =========================
   TYPO / TEXT
========================= */

hr {
    margin: 16px 0;
    border: none;
    border-top: 1px solid #e5e7eb;
}

.small {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .chart-row {
        flex-direction: column;
    }

    button,
    select {
        font-size: 14px;
        padding: 10px;
    }
}




.hero-banner {
    position: relative;
    width: 100%;
    height: 70px;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}
