/* Allgemeine Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, sans-serif;
	background-color: #f4f4f4;
    padding: 20px;
}

#container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
    padding: 10px;
}

.containera {
    width: 90%;
    max-width: 600px;
    background-color: #78932f;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

h1 {
    margin-bottom: 8px;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    color: white;
}

h2 {
    margin-bottom: 8px;
}

.edit-link {
    color: white;
    font-size: 20px;
    text-decoration: none;
    margin-left: 10px;
}

.edit-link:hover {
    color: #f1f1f1;
}

hr {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    border: none;
    border-top: 2px solid white;
    width: 90%;
}

.fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
    gap: 10px;
}

.field {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: white;
    text-align: center;
	
}

.field p {
    margin: 5px 0;
}

.button-wrapper {
    display: inline-block;
    position: relative;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    width: 100px;
    height: 40px;
}

.small-box {
    width: 100%;
    height: 40px;
    background-color: white;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.button-text {
    position: relative;
    z-index: 1;
    color: #78932f;
    font-size: 16px;
    text-decoration: none;
    display: block;
    line-height: 40px;
}

.field-container {
    display: flex;
    flex-direction: row; /* Standard: Felder untereinander */
    gap: 5px;
}

.field-container.responsive {
    flex-direction: column; /* Bei großen Bildschirmen: Felder nebeneinander */
	border: 1px solid white; /* Dünner weißer Rahmen */
    padding: 10px; /* Optional: Innenabstand, um den Inhalt vom Rahmen zu trennen */
    border-radius: 5px; /* Optional: Abgerundete Ecken */
}

/* Media Query für kleinere Bildschirme */
@media (max-width: 768px) {
    .field-container {
        flex-direction: row; /* Felder untereinander für kleine Bildschirme */
    }
}

