/* Split the screen in half */
.split {
  height: 100dvh;
  width: 50%;
  position: fixed;
  z-index: 1;
  top: 0;
  overflow: hidden;
  padding-top: px;
}

/* Control the left side */
.left {
    left: 0;
    -webkit-box-shadow: 0px 0px 7px 3px rgba(0,0,0,1), 
                        inset -7px 0px 7px -3px rgba(0,0,0,1);
    -moz-box-shadow: 0px 0px 7px 6px rgba(0,0,0,1), 
                     inset -3px 0px 7px -3px rgba(0,0,0,1);
    box-shadow: 0px 0px 7px 3px rgba(0,0,0,1), 
                inset -7px 0px 7px -3px rgba(0,0,0,1);
    border-right: 1px solid black;
}

/* Control the right side */
.right {
  right: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: #CE9C4A;
background: linear-gradient(314deg,rgba(206, 156, 74, 1) 0%, rgba(245, 175, 118, 1) 100%);
}

.responsive {
  width: 100%;
  height: auto;
}
button.aktiv,
button.aktiv:hover {
  background-color: #898ea4;
}

.floating {
   position: -webkit-sticky;
   position: sticky;
   position: absolute;
   top: 10px;
   right: 10px;
   z-index: 9999;
}





.parent-container {
    position: relative; /* Make the parent a positioning context */
    height: 100dvh; /* Example: full viewport height for the page */
}

.bottom-aligned-text {
    position: absolute;
    bottom: 0; /* Aligns to the bottom of the parent */
    left: 2%; /* Optional: Aligns to the left */
    /* Add other styling as needed */
}


.htop {
    position: absolute;
    top: 25%; /* Aligns to the bottom of the parent */
    left: 2%; /* Optional: Aligns to the left */
    /* Add other styling as needed */
}


.hcenter {
    position: absolute;
    top: 50%; /* Aligns to the bottom of the parent */
    left: 2%; /* Optional: Aligns to the left */
    /* Add other styling as needed */
}

.hbottom {
    position: absolute;
    top: 75%; /* Aligns to the bottom of the parent */
    left: 2%; /* Optional: Aligns to the left */
    /* Add other styling as needed */
}

.input {
  border: 2px solid transparent;
  width: 15em;
  height: 2.5em;
  padding-left: 0.8em;
  outline: none;
  overflow: hidden;
  background-color: transparent;
  border-radius: 10px;
  transition: all 0.5s;
}

.input:hover,
.input:focus {
  border: 2px solid #4A9DEC;
  box-shadow: 0px 0px 0px 7px rgb(74, 157, 236, 20%);
  background-color: white;
}

#recordButton { width: 90%; }

.buttoncontainer {
    display: flex;
    padding: 7px;
}





.flex-container {
      display: flex;
      flex-direction: row;
      
      flex-wrap: wrap;
        justify-content: space-between;
  align-items: normal;
  align-content: normal;

}


.flex-items {
  display: block;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  align-self: auto;
  order: 0;
  position: relative    
}

.input-field {
    background: linear-gradient(135deg, rgba(255, 218, 200, 0.7), rgba(255, 220, 110, 0.7));
    border: 2px solid;
    border-color: rgba(160, 140, 100, 1);
}


.input-field:hover {
    transform: translateY(0px);
    background: rgba(255, 220, 110, 0.7);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
		   }
