body {
    font-family: Arial, sans-serif;
    background-color: #e1e1e1;
    margin: 0;
    padding: 0;
}

header {
    background-color: rgb(4, 81, 126);
    color: white;
    padding: 0.25em;
    text-align: center;
}

main {
    padding-bottom: 2em;
}

.Filament {
    background: LightGrey;
    width: 225px;
    min-height: 410px;
    /*größe egal */
    border-radius: 25px;
    margin-top: 8px;
    margin-left: 8px;
    padding-bottom: 8px;
    display: flex;
    /*aktiviert die flexibele Positionierung*/
    flex-direction: column;
    /*Gibt an, dass Elemente übereinander stehen sollen */
    justify-content: center;
    /*Packe den Inhalt in die Mitte (Vertikal) */
    align-items: center;
    /*Inhalt Horizontal zentrieren */
}

img {
    width: 200px;
    border-radius: 25px
}

p {
    width: 200px;
}

.button {
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    background-color: black;
    border-radius: 25px
}


.Reihe {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-basis: 100%;
    flex-wrap: wrap;
    width: 100%;
}

.hide {
    display: none
}

/* Popup-Stil */
#popup {
    display: none;
    /* Standardmäßig ausgeblendet */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    padding: 20px;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 20px;
}

#popupOverlay {
    display: none;
    /* Hintergrundüberlagerung */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.close-btn {
    margin-top: 10px;
    text-align: right;
}

/* Container für das Input-Feld */
.input-container {
    position: relative;
    width: 300px;
    margin: 20px auto;
}

/* Stil des Input-Feldes */
.input-container input {
    width: 100%;
    padding: 10px 5px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
    /* Runde Ecken */
    background-color: #f9f9f9;
    /* Heller Hintergrund */
    transition: border-color 0.3s, box-shadow 0.3s;
}

.inputmodern {
    width: 260px;
    padding: 10px 15px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 5px;
}

.button-container {
    display: flex;
    gap: 10px;
    /* Abstand zwischen den Buttons */
    justify-content: center;
    /* Zentriert die Buttons horizontal */
    align-items: center;
    /* Zentriert die Buttons vertikal */
}

.deleteButton {
    width: 50px;
    height: 50px;
    padding: 10px 10px;
    background-color: rgb(255, 74, 74);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background-image: url(delImg.png);
    background-size: 82%;
    background-position: center;
}

.editButton {
    width: 50px;
    height: 50px;
    padding: 10px 10px;
    background-color: rgb(4, 81, 126);
    color: white;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background-image: url(editImg.png);
    background-size: 82%;
    background-position: center;
}

.openButton {
    width: 50px;
    height: 50px;
    padding: 10px 10px;
    background-color: rgb(0, 41, 65);
    color: white;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background-image: url(openImg.png);
    background-size: 82%;
    background-position: center;
}

.openPopupBtn{
    width: 50px;
    height: 50px;
    padding: 10px 10px;
    background-color: rgb(4, 81, 126);
    color: white;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background-image: url(addImg.png);
    background-size: 82%;
    background-position: center;
    position: fixed; 
    top: 16px; 
    right: 16px; 
    width: 50px;
    height: 50px;
}