/* Body und HTML-Styles */
body, html {
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

/* Kopfbereich der Seite: Festgelegt, bleibt oben beim Scrollen sichtbar */
.layout-header {
    background-color: rgb(103, 182, 231); 
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
  
}

/* Header-Zeile*/
.header-row {
    display: flex;
    align-items: center;
    width: 95%;
    
}

/* Seitentitel im Kopfbereich */
.layout-title {
    font-size: 24px;
    padding: 15px;
    color: white;
}

/* Rechte Seite im Header*/
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

/* Dropdown-Menü*/
.dropdown-menu {
    display: none; /* Standardmäßig verstecken */
    position: fixed;
    right: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: white;
    padding: 10px;
    border-radius: 4px;
    z-index: 1000;
    margin-right: 15px;
    transition: background 0.3s, color 0.3s;

}

/* Links im Dropdown-Menü */
.dropdown-menu a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: rgb(37, 87, 117);
}

/* Hover-Effekt für Links im Dropdown-Menü */
.dropdown-menu a:hover {
    background: #E0E0E0;
    color: #000;
}

/* Textstil für Benutzernamen */
.username-text {
    font-size: 24px;
   
}

/* Stil für Benutzersymbol */
.icon-user {
    height: 35px;

}

/* Eingabefeld mit schwebendem Label */
.textfield-expandable-floating-label {
    display: flex;
    align-items: center;
}

/* Eingabefeld-Container */
.textfield-expandable-holder {
    display: none; 
}

/* Eingabefeld-Stil */
.textfield-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid white;
    color: white;
    padding: 8px;
    outline: none;
}

/* Menü-Button-Stil */
.button-icon-menu {
    color: white;
    cursor: pointer;
}

/* Seitenleiste: Versteckt, schiebt sich beim Öffnen herein */
.layout-drawer {
    position: fixed;
    top: 80px; 
    left: 0;
    width: 250px;
    height: 100%;
    background: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    transform: translateX(-250px); 
    transition: transform 0.3s ease;
    z-index: 1;
}

/* Navigationselemente in der Seitenleiste */
.navigation {
    display: flex;
    flex-direction: column;
}

/* Links in der Navigation */
.navigation-link {
    padding: 16px;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s, color 0.3s;
}

/* Hover-Effekt für Navigationslinks */
.navigation-link:hover {
    background: #E0E0E0;
    color: #000;
}

/* Trennlinie in der Navigation */
hr.navigation-divider {
    border: 0;
    border-top: 1px solid #b4b2b2; 
    margin: 10px 0; 
}

/* Inhaltsbereich */
.layout-content {
    margin-top: 64px;  /* Unterhalb der Header */
    padding: 16px;
    box-sizing: border-box; /* Padding wird in die Gesamtbreite einbezogen */

}

/* Hauptinhalt der Seite */
.Page-content {
    padding: 16px;
    background: #FFF;
    min-height: calc(100vh - 64px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Offen-Status für die Seitenleiste */
.drawer-open .layout-drawer {
    transform: translateX(0); /* Sichtbar */
}

/* Stil für Abschnitte in der Seite */
.Page-content .tätigkeiten,
.Page-content .bewertungen,
.Page-content .details {
    padding: 16px;
    background: #FFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Schatteneffekt */
    color: rgb(37, 87, 117); /* Textfarbe */
}

/* Stil für Info-Abschnitte in der Seite */
.Page-content .information{
    padding: 16px;
    background: #FFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Schatteneffekt */
    color: rgb(37, 87, 117); /* Textfarbe */
}

/* Stil für Info-Links */
.information-link{
    padding-top: 20px;
    color: rgb(37, 87, 117);
    text-decoration: none; /* Keine Unterstreichung */
}

.information-link-bold{
    padding-top: 20px;
    color: rgb(37, 87, 117);
    text-decoration: none; /* Keine Unterstreichung */
    font-weight: bold;
}

/* Hover-Effekt für Info-Links */
.informationHoover:hover {
    text-decoration: underline;
}

/* Links mit Hover-Effekt */
.tätigkeiten-link, .bewertungen-link {
    padding-top: 20px;
    color: rgb(37, 87, 117);
    text-decoration: none; /* Keine Unterstreichung */
    font-weight: bold;
}

/* Hover-Effekt für Tätigkeiten-Links */
.tätigkeitenHoover:hover {
    text-decoration: underline;
}

/* Name der Lehrkraft */
.lehrer {
    color: rgb(37, 87, 117);
    font-weight: bold;
}

/* Deadline-Text */
.deadline {
    color: rgb(117, 37, 37);
    font-weight: bold;
}

/* Textbereich für den Text der Dokumentation usw. */
.textarea {
    width: 100%;
    font-weight:bold;
    padding: 16px;
    background: #FFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: rgb(37, 87, 117);
} 

/* Dokumentationsabschnitt */
.dokumentation {
    padding: 16px;
    background: #FFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: rgb(37, 87, 117);
}

/* Beschreibungstext */
.beschreibung {
    padding: 16px;
    background: #FFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: rgb(37, 87, 117);
    text-align: justify;
}

/* Flexbox für Elemente */
.flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* H3-Titel ohne Margin */
h3 {
    margin: 0;
}

/* Check-Mark-Symbol */
.check-mark img {
    width: 24px; 
    height: 24px;
}

/* Eingabefeld-Button */
input[type="submit"] {
    margin-top: 2px; 
    background-color: rgb(58, 123, 170); 
    color: white; 
    padding: 8px 15px; 
    border: none; 
    border-radius: 5px;
    cursor: pointer; 
    font-size: 16px;
  }
  
  /* Hover-Effekt für Eingabefeld-Button */
  input[type="submit"]:hover {
    background-color: rgb(58, 123, 170); 
  }

/* Seitenleiste beim Öffnen */
  .drawer-open .layout-drawer {
    transform: translateX(0);
}

/* Textbereich für Dokumentation */
#dokumentation-textarea{
    width: 99%;
    padding: 10px;
    font-size: 16px;
    height: 200px;
}

/* Eingabefeld für die gesamte Breite */
.full-width {
    width: 100%;
    box-sizing: border-box;
    resize: vertical; 
    padding: 10px;
    font-size: 16px;
    max-width: 100%;
}

/* Gestylte Dropdown-Auswahl */
.styled-select {
    background-color: white; 
    border: 1px solid #ccc; 
    border-radius: 5px; 
    padding: 10px 10px; 
    font-size: 14px; 
    color: rgb(37, 87, 117); 
    outline: none; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    box-shadow: none;
    width: 100%;
}
.styled-select-search {
    background-color: white; 
    border: 1px solid #ccc; 
    border-radius: 5px; 
    padding: 10px 10px; 
    font-size: 14px; 
    color: rgb(37, 87, 117); 
    outline: none; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    box-shadow: none;
}
.styled-select-epa {
    background-color: white; 
    border: 1px solid #ccc; 
    border-radius: 5px; 
    padding: 10px 10px; 
    font-size: 14px; 
    color: rgb(37, 87, 117); 
    outline: none; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    box-shadow: none; 
}

.styled-select-taetigkeit {
    margin-top: 20px ;
}
/* Hover-Effekt für Dropdown */
.styled-select:hover {
    background-color: #e6e6e6; 
    border-color: #888; 
    color: rgb(37, 87, 117);
}

/* Fokus-Effekt für Dropdown */
.styled-select:focus {
    border-color: rgb(37, 87, 117); 
    box-shadow: 0 0 5px  rgb(37, 87, 117) 
}

/* Dropdown-Optionen */
.styled-select option {
    background-color: #fff; 
    color: rgb(37, 87, 117); 
    padding: 10px; 
}

/* Hover-Effekt für Dropdown-Optionen */
.styled-select option:hover {
    background-color:  rgb(37, 87, 117); 
    color: #fff;
}

/* Suchleiste und Sortierleiste */
.search-bar {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.sort-bar {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

/* Label für Such- und Sortierfelder */
.search-bar label, .sort-bar label {
    font-size: 16px;
    margin-right: 10px;
    color: rgb(37, 87, 117);
}

/* Eingabefeld für Suche */
.input-search {
    width: 90%;
}

/* Gestyltes Eingabefeld */
.styled-input {
    background-color: #ffffff; 
    border: 1px solid #ccc; 
    border-radius: 5px; 
    padding: 7px 10px; 
    font-size: 14px; 
    color: rgb(37, 87, 117); 
    outline: none; 
    cursor: text; 
    transition: all 0.3s ease; 
    box-shadow: none;
    margin-right: 10px;
}

/* Eingabefeld für Tätigkeiten */
.styled-input-tät {
    width: 100%;
}


/* Hover-Effekt für gestyltes Eingabefeld */
.styled-input:hover {
    background-color: #e6e6e6; 
    border-color: #888; 
    color: rgb(37, 87, 117); 
}

/* Fokus-Effekt für gestyltes Eingabefeld */
.styled-input:focus {
    border-color: rgb(37, 87, 117); 
    box-shadow: 0 0 5px rgb(37, 87, 117); 
}

/* Platzhalter im Eingabefeld */
.styled-input::placeholder {
    color: rgb(37, 87, 117); 
    font-style: italic; 

}

/* Spezielle Buttons mit Edit-Funktion */
button[type="submit"][name="edit"] {
    margin-top: 2px; 
    background-color: rgb(58, 123, 170); 
    color: white; 
    padding: 10px 20px; 
    border: none; 
    border-radius: 5px;
    cursor: pointer; 
    font-size: 16px;
}

/* Allgemeine Buttons */
button {
    margin-top: 2px; 
    background-color: rgb(58, 123, 170); 
    color: white; 
    padding: 10px 20px; 
    border: none; 
    border-radius: 5px;
    cursor: pointer; 
    font-size: 16px;
}

/* Link im Button-Stil */
a.button {
    display: inline-block;
    padding: 2px 10px;
    font-size: 16px;
    color: rgb(37, 87, 117);
    text-align: center;
}

/* Profil Seite */
.heading-profil {
    display: flex;
    justify-content: space-between; /* Links und rechts ausrichten */
    align-items: center; /* Vertikale Ausrichtung */
    margin-bottom: 10px; /* Abstand zum nächsten Element */
}

/* Profilrolle */
.profil-role {
    text-align: right;
    position: relative;
}

/* Fehlermeldung*/
.error-message {
    margin-top: 10px;
    color: rgb(37, 87, 117);
    font-weight: bold;
}
/* TätigKatalog Suche bei kleineren Bildschirmen anpassen*/
@media (max-width: 625px) {
    label[for="searchInput"]{
        display: none;
    }
  }
@media (max-width: 386px) {
    label[for="sortSelect"]{
        display: none;
    }
}

@media (max-width: 625px) {
    .userTextMobil {
        display: none;
    }
}



  