/* Grundstil */
* {
    font-family: "Arial";
    margin: 5px;
    box-sizing: border-box;
}

body {
    background: #f7f7f7;
    color: #333;
}

/* Überschrift */
h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 20px;
    color: #444;
}

/* Container */
.container {
    border: 2px solid #a6a6a6;
    border-radius: 10px;
    border-bottom: 3px solid lightgreen;
    padding: 10px;
    background: white;
    width: fit-content;
}

/* Tabelle */
.container table {
    width: 100%;
}

img {
    height: 200px;
    border-radius: 10px;
    border: 2px solid #a6a6a6;
    border-bottom: 3px solid lightgreen;
}

/* Titel */
h3 {
    margin-top: 0;
    color: #333;
}

/* Link-Button */
a {
    display: inline-block;
    padding: 8px 14px;
    background: white;
    border: 2px solid #a6a6a6;
    border-radius: 10px;
    border-bottom: 3px solid lightgreen;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: 0.2s;
}

a:hover {
    border-bottom: 3px solid gray;
    transform: translateY(-2px);
}

/* Buttons (falls du welche nutzt) */
button {
    border: 2px solid #a6a6a6;
    border-radius: 100%;
    border-bottom: 3px solid red;
    padding: 10px;
    background: white;
    cursor: pointer;
}

/* Dialog */
dialog {
    border: 2px solid #a6a6a6;
    border-bottom: 3px solid lightgreen;
    border-radius: 10px;
    min-width: 50%;
    min-height: 20%;
    padding: 20px;
}

/* Inputs */
input {
    outline: none;
    background: white;
    padding: 6px 12px;
    height: 30px;

    border: 2px solid #a6a6a6;
    border-radius: 10px;
    border-bottom: 3px solid lightgreen;

    transition: 0.2s;
}

input:hover {
    border-bottom: 3px solid gray;
}

input:focus {
    border-bottom: 3px solid lightgreen;
    transform: translateY(-2px);
}


/* Responsive */
@media (max-width: 700px) {
    .container table {
        display: block;
    }

    .container td {
        display: block;
        text-align: center;
    }

    .container img {
        margin: 0 auto;
    }
}

/* Text */

.small {
	color: #969696;
	font-size: 7pt;
}

/* Tabelleninhalt mittif */

.tblhc {
	display: flex;
	align-items: center;
	justify-content: center;
}
