/* ============================================================
   RESET.CSS — Minimal Reset für alle Browser
============================================================ */

/* Box-Sizing */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Entfernt Default-Margins */
body, h1, h2, h3, h4, h5, h6, p, ul, ol {
    margin: 0;
    padding: 0;
}

/* Entfernt Bullet-Styles */
ul, ol {
    list-style: none;
}

/* Standard-Link-Style neutralisieren */
a {
    text-decoration: none;
    color: inherit;
}

/* Bilder block-level + responsive */
img, picture {
    max-width: 100%;
    display: block;
}

/* Inputs konsistenter */
input, button, textarea, select {
    font: inherit;
    border: none;
    background: none;
    outline: none;
}

/* Entferne Safari Button-Style */
button {
    appearance: none;
}

/* Tabellen neutralisieren */
table {
    border-collapse: collapse;
    width: 100%;
}