#inzichtkaartenapp {
  max-width: 600px;
  /*margin: 20px auto;*/
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  overflow: hidden;
  border-radius: 12px;
}

/* Emoties Container Stijl */
#emotiesContainer {
  padding: 20px;
}


#emotiesContainer h2 {
  text-align: center;
  margin-top: 20px;
  border-bottom: 1px solid #e1e1e1;
  padding: 10px 0;
}

#emotiesContainer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#emotiesContainer button {
  flex: 0 0 calc(33.33% - 10px);  /* Drie knoppen per rij */
  margin: 5px 0;
 /* padding: 10px;*/
  text-align: center;
  transition: background-color 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Reactie respons stijl */
.openai-response {
  padding: 20px;
  background-color: #e8e8e8;
  border-top: 1px solid #d1d1d1;
  color: #555;
  font-size: 16px;
}
#requestCardButton {
  width: 100%;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 20px;
  font-size: 18px;
  background-color: #007BFF;
  border-top: 1px solid #d1d1d1;
  position: relative;  /* Voor de spinner */
}
#emotiesContainer button:hover {
    background-color: #0056b3;
    color: white;
}

#emotiesContainer button.selected {
    background-color: #4CAF50;
    color: white;
}

#emotiesContainer p.descriptionemotie {
    font-size: 15px;
    line-height: 17px;
    margin-top: 10px;
    /* font-family: sans-serif; */
}

#loadingSpinner {
  position: absolute;
  top: 80%;
  left: 45%;
    transform: translate(-50%, -50%);
    z-index: 9999; /* zorg ervoor dat dit boven andere elementen staat */
   /* background: rgba(255, 255, 255, 0.8); /* semi-transparante witte achtergrond */
}
.loader {
    width: 48px;
    height: 48px;
    border: 3px dotted #FFF;
    border-style: solid solid dotted dotted;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
  }
  .loader::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px dotted #FF3D00;
    border-style: solid solid dotted;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    animation: rotationBack 1s linear infinite;
    transform-origin: center center;
  }
      
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  } 
  @keyframes rotationBack {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-360deg);
    }
  } 

  div#networkLoadNotice {
    text-align: center;
    padding: 5px;
    margin-top: 30px;
    background: #e8e8e8;
}