body {
    font-family: Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    position: relative;
    padding-bottom: 60px; /* Platz für Copyright unten */
}

.login-button {
    background-color: #94b9ee;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: #94b9ee;
}

.homepage-link {
    position: fixed; /* Platziert den Text genau über dem Footer.*/ 
    bottom: 180px; 
    right: 100px;          /* Abstand zum rechten Bildschirmrand */
    z-index: 999;         /* Sorgt dafür, dass der Text über dem normalen Inhalt liegt */
    padding: 5px 10px;    /* Optional: Ein wenig Platz um den Text */
}

.homepage-link p {
    margin: 0;
    text-align: right;    /* Richtet mehrzeiligen Text rechtsbündig aus */
    font-size: 14px;      /* Beispiel-Schriftgröße */
    color: #333;          /* Textfarbe */
}

.grid-bewohnerdaten {
    /* Grid-Layout (Struktur) */
    display: grid;
    grid-template-columns: 2fr 8fr;
    gap: 20px;

    /* Schriftformatierungen (Design) */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Schriftart */
    font-size: 20px;          /* Basis-Schriftgröße */
    color: #333333;           /* Dunkelgraue Schriftfarbe für bessere Lesbarkeit */
    line-height: 1.6;         /* Zeilenabstand für angenehmes Lesen */
    text-align: left;         /* Text linksbündig ausrichten */
}

.dropdown-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 250px; /* Gleiche maximale Breite wie das Select-Feld */
}

/* Optionaler Bonus: Der Custom-Pfeil */
.dropdown-wrapper::after {
    content: "▼";
    font-size: 12px;
    color: #666;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Klicks gehen durch den Pfeil durch auf das Select-Feld */
}

.dropdown {
    width: 100%;
    max-width: 250px; /* Begrenzt die Breite */
    padding: 10px 15px;
    font-size: 16px;
    font-family: sans-serif;
    color: #333;
    background-color: #f9f9f9;
    border: 2px solid #ccc;
    border-radius: 6px; /* Abgerundete Ecken */
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease;

    /* Entfernt den Standard-Browser-Pfeil */
    -webkit-appearance: none; /* Safari / Chrome */
    -moz-appearance: none;    /* Firefox */
    appearance: none;         /* Standard */
}

/* Effekt, wenn der Nutzer in das Dropdown klickt */
.dropdown:focus {
    border-color: #0066cc;
    background-color: #fff;
}

.grid-buttons {
    /* Grid-Layout (Struktur) */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Schriftart */
    font-size: 20px;          /* Basis-Schriftgröße */
    color: #333333;         /* Dunkelgraue Schriftfarbe für bessere Lesbarkeit */
    line-height: 1.6;         /* Zeilenabstand für angenehmes Lesen */
    text-align: left;         /* Text linksbündig ausrichten */
}

.grid-medikation {
    display: grid;
    grid-template-columns: 300px repeat(5, 150px) repeat(2, 200px);
    row-gap: 5px;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Schriftart */
    font-size: 20px;          /* Basis-Schriftgröße */
    color: #333333;         /* Dunkelgraue Schriftfarbe für bessere Lesbarkeit */
    line-height: 1.6;         /* Zeilenabstand für angenehmes Lesen */
    text-align: left;         /* Text linksbündig ausrichten */
}

.items-medikation_head {
    border-bottom: 3px solid #313131;
    background-color: #9e9e9e;
    font-weight: bold;
}

.items-medikation, .items-medikation_dosis {
    border-bottom: 1px solid #6b6b6b;
    background-color: #f9f9f9;
}

.items-medikation_dosis {
    text-align: center;
}