@media (min-width: 1025px) {
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins" , sans-serif;
  }
  .sidebar{
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 78px;
    background: #11101D;
    padding: 6px 14px;
    z-index: 99;
    transition: all 0.5s ease;
  }
  .sidebar.open{
    width: 250px;
  }
  .sidebar .logo-details{
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
  }
  .sidebar .logo-details a .icon{
    opacity: 0;
    transition: all 0.5s ease;
  }
  .allgemein {
    height: auto;
  }

  .home-section {
    height: auto; /* Oder eine andere geeignete Höhe */
}
  .sidebar .logo-details .logo_name{
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.5s ease;
  }
  .sidebar.open .logo-details .icon,
  .sidebar.open .logo-details .logo_name{
    opacity: 1;
  }
  .sidebar .logo-details #btn{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 22px;
    transition: all 0.4s ease;
    font-size: 23px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s ease;
  }
  .sidebar.open .logo-details #btn{
    text-align: right;
  }

  .sidebar i{
    color: #fff;
    height: 60px;
    min-width: 50px;
    font-size: 28px;
    text-align: center;
    line-height: 60px;
  }
  .sidebar .nav-list{
    margin-top: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .sidebar li{
    position: relative;
    margin: 8px 0;
    list-style: none;
  }
  .sidebar li .tooltip{
    position: absolute;
    top: -20px;
    left: calc(100% + 15px);
    z-index: 3;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 400;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    transition: 0s;
  }
  .sidebar li:hover .tooltip{
    opacity: 1;
    pointer-events: auto;
    transition: all 0.4s ease;
    top: 50%;
    transform: translateY(-50%);
  }
  .sidebar.open li .tooltip{
    display: none;
  }
  .sidebar input{
    font-size: 15px;
    color: #FFF;
    font-weight: 400;
    outline: none;
    height: 50px;
    width: 100%;
    width: 50px;
    border: none;
    border-radius: 12px;
    transition: all 0.5s ease;
    background: #1d1b31;
  }
  .sidebar.open input{
    padding: 0 20px 0 50px;
    width: 100%;
  }
  .sidebar li a{
    display: flex;
    height: 100%;
    width: 100%;
    border-radius: 12px;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s ease;
    background: #11101D;
  }
  .sidebar li a:hover{
    background: #FFF;
  }

  .sidebar li a .links_name{
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
  }
  .sidebar.open li a .links_name{
    opacity: 1;
    pointer-events: auto;
  }
  .sidebar li a:hover .links_name,
  .sidebar li a:hover i{
    transition: all 0.5s ease;
    color: #11101D;
  }
  .sidebar li i{
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    border-radius: 12px;
  }
  .sidebar li.profile{
    position: fixed;
    height: 60px;
    width: 78px;
    left: 0;
    bottom: -8px;
    padding: 10px 14px;
    background: #1d1b31;
    transition: all 0.5s ease;
    overflow: hidden;
  }
  .sidebar.open li.profile{
    width: 250px;
  }
  .sidebar li .profile-details{
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
  }
  .sidebar li img{
    height: 45px;
    width: 45px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 10px;
  }

  .sidebar li.profile .name,
  .sidebar li.profile .job{
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
  }
  .sidebar li.profile .job{
    font-size: 12px;
  }
  .sidebar .profile #log_out{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #1d1b31;
    width: 100%;
    height: 60px;
    line-height: 60px;
    border-radius: 0px;
    transition: all 0.5s ease;
  }
  .sidebar.open .profile #log_out{
    width: 50px;
    background: none;
  }
  .home-section{
    position: relative;
    background: #E4E9F7;
    min-height: 100vh;
    top: 0;
    left: 78px;
    width: calc(100% - 78px);
    transition: all 0.5s ease;
    z-index: 2;
    overflow-x: hidden;
  }

  .sidebar.open ~ .home-section{
    left: 250px;
    width: calc(100% - 250px);
  }
  .home-section .uew h2{
    display: inline-block;
    color: #11101d;
    font-size: 30px;
    font-weight: 500;
    margin: 18px
  }

  .home-section .uew p, .home-section .uew h3{
    color: #11101d;
    font-size: 20px;
    font-weight: 400;
    margin-left: 25px;
    margin-bottom: 20px;  
  }

  .home-section .kalender{
    display: inline-block;
    color: #11101d;
    font-size: 20px;
    font-weight: 400;
    margin-left: 25px;
    width: 1000px;
  }

  .home-section .kalender select{
    margin-left: 20px;
    width: 150px;
    font-size: 16px;
    font-weight: 400;
    color: #11101d;
    background: #E4E9F7;
    margin-bottom: 20px;
  }

  .home-section .kalender select option {
    background-color: #fff;
    color: #11101d;
    font-size:20px;
  }

  .home-section .kalender table {
    margin-top: 20px;
    border-collapse: collapse;
  }

  .home-section .kalender table tr th, .home-section .kalender table tr td{
    padding: 20px;
    border-bottom: 1px solid #080710;
    width: 500px;
  }

  .wtunterbesetzt {
    background-color: rgb(212, 72, 59);
    border-radius: 10px;
  }

  .wtvoll {
    background-color: rgb(84, 166, 49);
    border-radius: 10px;
  }

  .deindienst {
    background-color: rgb(235, 221, 68);
    border-radius: 10px;
  }

  #logo {
    height: 25%;
    margin-right: 15px;
  }

  .profile .login {
    display: flex;
    color: #fff;
    text-align: center;
    justify-content: center;
    font-size: 25px;
  }

  .profile .login:hover {
    color: #575757;
    background: #11101D;
  }

  .login_form{
    width: 400px;
    background-color: #11101D;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 40px rgba(8,7,16,0.6);
    padding: 50px 35px;
  }
  .login_form *{
    font-family: 'Poppins',sans-serif;
    color: #ffffff;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
  }
  .login_form h3{
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
    text-align: center;
  }

  .login_form label{
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
  }
  .login_form input{
    display: block;
    height: 50px;
    width: 100%;
    background-color: rgba(255,255,255,0.07);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
  }
  .login_form::placeholder{
    color: #e5e5e5;
  }

  .login_form .submit{
    margin-top: 50px;
    width: 100%;
    background-color: #ffffff;
    color: #080710;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
  }
  .login_form .social{
  margin-top: 30px;
  display: flex;
  }
  .login_form .social div{
  background: red;
  width: 150px;
  border-radius: 3px;
  padding: 5px 10px 10px 5px;
  background-color: rgba(255,255,255,0.27);
  color: #eaf0fb;
  text-align: center;
  }
  .login_form .social div:hover{
  background-color: rgba(255,255,255,0.47);
  }
  .login_form .social .fb{
  margin-left: 25px;
  }
  .login_form .social i{
  margin-right: 4px;
  }

  .kalender {
    margin: 20px;
  }

  .nachricht h3 {
    margin-top: 40px;
    display: inline-block;
    color: #11101d;
    font-size: 28px;
    font-weight: 500;
    margin-left: 18px
  }

  #rot{
    color: rgb(212, 72, 59);
  }

  #grün{
    color: rgb(84, 166, 49);
  }

  .fehler {
    background-color: #1d1b31;
    width: 300px;
    padding: 20px;
    margin: 20px;
    border: rgb(218, 36, 20) solid;
    border-radius: 10px;
    display: inline-block;
    right: 0;
    position: absolute;
    right: 0;
  }

  .jreg {
    margin-top: 8px;
    text-align: center;
  }

  .jreg a {
    text-decoration: none;
  }

  .fehler h4 {
    color: #fff;
  }

  .box {
    margin-top: 30px;
  }

  .register-form{
    width: 800px;
    background-color: #11101D;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 40px rgba(8,7,16,0.6);
    padding: 50px 35px;
  }
  .register-form *{
    font-family: 'Poppins',sans-serif;
    color: #ffffff;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
  }
  .register-form h3{
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
    text-align: center;
  }

  .register-form .t1 tr td label{
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
  }

  .register-form .t1 tr td input{
    margin-right: 10px;
  }

  .register-form .t1 tr td input{
    width: 300px;
    display: block;
    height: 50px;
    background-color: rgba(255,255,255,0.07);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
  }
  .register-form::placeholder{
    color: #e5e5e5;
  }

  .register-form .t1 tr td select{
    background-color: #11101D;
    border: #11101D 1px solid;
    font-size: 15px;
    font-weight: 300;
    padding: 2px;
    padding-right: 100px;
  }

  .captcha {
    margin-top: 40px;
    margin-left: 50px;
  }

  .register-form .submit{
    margin-top: 50px;
    width: 100%;
    background-color: #ffffff;
    color: #080710;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
  }

  .qualifikation{
    display: block;
    height: 20px;
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
  }

  .checkbox {
    height: 20px;
  }

  .edit {
    text-decoration: none;
    background-color: #080710;
    padding: 4px;
    margin-top: 1px;
    border-radius: 10px;
    margin-right: 10px;
    color:#fff;
  }

  input.edit {
    border: 0px;
    font-size: 20px;
    background-color: #080710;
    color:#fff;
    text-decoration: none;
  }

  button.edit {
    border: 0px;
    font-size: 20px;
    padding: 4px;
    background-color: #080710;
    color:#fff;
    text-decoration: none;
  }

  .pb {
    background-color: transparent;
    border: none;
    font-size: 20px;
    width: 200%;
  }

  .pbm select {
    display: none;
  }

  .pbt {
    background-color: transparent;
    border: none;
    font-size: 20px;
    width: 100%;
  }
  .pbs{
    background-color: transparent;
    border: none;
    font-size: 20px;

  }

  .pbs#tag {
    width: 30px;
    text-align: right;
  }
  .pbs#monat {
    width: 30px;
    text-align: right;
  }
  .pbs#jahr {
    width: 60px;
    text-align: right;
  }

  .pbn {
    background-color: transparent;
    border: none;
    font-size: 20px;
    width: 30px;
  }

  #profilbild::-webkit-file-upload-button  {
    background: #080710;
    border: none;
    color: #fff;
    padding: 7px;
    border-radius: 5px;
  }

  td :-ms-input-placeholder, td ::-webkit-input-placeholder {
    color: #270ee9;
  }

  @media (max-width: 420px) {
    .sidebar li .tooltip{
      display: none;
    }
  }
}

.grau {
  background-color: rgb(170, 170, 170);
  border-radius: 10px;
}

.grau a {
  text-decoration:none;
  font-weight: bold;
  color: #080710;
}

.eintragen {
  background-color: #080710;
} 







