@import url('https://fonts.googleapis.com/css2?family=Baloo+Paaji+2:wght@400..800&display=swap');



body {
    background-image: url('../assets/background.svg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    max-height: 100vh;
    margin: 0;
    color: #f2f2f2;
    font-family: "Baloo Paaji 2", system-ui;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body.dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  pointer-events: none;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    overflow: hidden;
  }
  
  .app {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    overflow: hidden;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
  }


  
  .tab {
    max-height: 100%;
    max-width: 90%;
    height: 80%;
    margin: 10px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(75, 75, 75, 0.0));
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid gray;
  }

  .tab.scrollable {
    overflow-y: auto;
    overflow-x: hidden;
  }

  .tab.s {
    flex-basis: 20%;
  }
  
  .tab.m {
    flex-basis: 40%;
  }
  
  .tab.l {
    flex-basis: 60%;
  }
  
  .bar {
    display: flex;
    justify-content: space-evenly;
    padding: 10px;
  }
  
  .app-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(75, 75, 75, 0.0));
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid gray;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.4s ease;
  }

  .app-icon:not(.selected):hover {
    border: 1px solid rgb(226, 118, 79);
    color: rgb(226, 118, 79);
  }

  .app-icon.selected {
    background: linear-gradient(to bottom, rgba(226, 118, 79, 0.6), rgba(226, 118, 79, 0.1));
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgb(226, 118, 79);
  }
  
  .app-icon span {
    margin-top: 5px;
    font-size: 14px;
  }
  


  .contactbutton {
    background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(to right, rgba(226, 118, 79, 0.3), rgba(99, 178, 218, 0.3));
  border: 1px solid gray;
  border-radius: 10px;
  padding: 10px;
  padding-left: 30px;
  padding-right: 30px;
  transition: border-color 0.3s ease, transform 0.2s ease;
  }

  .contactbutton.ofgescheckt {
    background: linear-gradient(to right, rgba(22, 160, 133, 0.3), rgba(99, 178, 218, 0.3));
    border: 1px solid rgb(26, 188, 156);
  }

  .teamcard {
    display: block;
    background: linear-gradient(to right, rgba(226, 118, 79, 0.3), rgba(99, 178, 218, 0.3));
    border: 1px solid gray;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    margin: auto;
}

.teamcard img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.team_name {
    font-size: 20px;
    font-weight: 900;
}

.team_bereich {
    font-size: 15px;
    font-weight: 600;
}

.team_mail {
    font-size: 12px;
    font-weight: 500;
}

.team-container {

justify-content: center;
align-items: center;

padding: 25px;
}

.errmsg {
  background-color: rgba(192, 57, 43,0.5);
  border: 2px solid rgb(231, 76, 60);
  border-radius: 5px;
  width: 93%;
  padding: 5px;
  padding-left: 10px;
  font-weight: 800;
}

.form-group {
  margin-bottom: 15px;
  padding-left: 0px;
}

label {
  display: block;
  font-size: 0.9em;
  margin-bottom: 5px;
  font-weight: 800;
}

.contactinput {
  width: 90%;
  padding: 8px;
  font-size: 0.9em;
  color: #f2f2f2;
  border: 1px solid gray;
  border-radius: 15px;
  background-color: rgba(0,0,0,0.2);
  background-clip: padding-box;
  border-radius: 4px;
  font-family: "Baloo Paaji 2", system-ui;
  font-weight: 500;
  outline: none;
}

textarea.contactinput {
  height: 100px;
}

.contactinput:focus {
  background-color: rgba(99, 178, 218,0.2);
  border-color: #e2764f;
}

.skeleton {
  animation: skeleton-loading 0.5s linear infinite alternate;
  color: transparent;
}


@keyframes skeleton-loading {
  0% {
      background-color: rgba(245, 245, 245,0.5);
  }
  100% {
      background-color: rgba(226, 226, 226,0.5);
  }
}