/* Styles spezifisch für die Luftgewehr-Seite */

/* Zentrierung des Hauptinhalts */
#content {
    text-align: center; /* Zentriert Inline-Elemente (Text, Bilder etc.) */
    /* Optional: Für Block-Elemente, falls notwendig */
    /* display: flex;
    flex-direction: column;
    align-items: center; */
}

/* Responsives Tabellen-Styling */
@media (max-width: 600px) {
    table {
        display: block;
        width: 100%;
    }

    thead {
        display: none;
    }

    tbody tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #ddd;
    }

    tbody td {
        display: block;
        padding: 0.5em;
        text-align: right;
        position: relative;
        padding-left: 50%;
        border-bottom: 1px dotted #eee;
    }

    tbody td:before {
        content: attr(data-label);
        position: absolute;
        left: 0.5em;
        font-weight: bold;
        text-align: left;
    }
}

.small {
    font-size: 0.8em;
    color: #777; /* Beispielhafte Farbe */
}