html{
  height: 100%;
  width: 100%;
}

body{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Basic reset */

/* Card container */
.card {
  width: 300px;
  margin: 20px auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

/* Card content */
.card-content {
  padding-top: 10px;
}

.card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #333;
}

.card-text {
  font-size: 1em;
  color: #666;
  line-height: 1.4;
}

/* Card button */
.card-button {
  display: block;
  text-align: center;
  padding: 10px;
  margin: 20px auto 0;
  width: 80%;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.card-button:hover {
  background-color: #0056b3;
}

#headSection{
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

#titolo{
  font-size: 18pt;
  font-weight: 600;
  text-align: center;
}

#body{
  background-color: #f5f5f5;
  width: 100%;
  flex: 10;
  text-align: center;
}

#dottory{
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

#container_ricerda_dott{
  flex: 1;
}

#container_ricerca_dott, #container_ricerca_prest, #labelsContainer{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

#nextButton{
  width: 100%;
}

.inputElement{
  padding: 5px;
  font-size: 16px;
  border: none; 
  border-bottom: 1px solid #ccc;
  outline: none;
  box-sizing: border-box;
}

#container_dottori{
  flex: 9;
  justify-content: start;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 200px;
  overflow-y: auto;
}

#container_prestazioni{
  justify-content: start;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 200px;
  overflow-y: auto;
}

.docIcons{
padding: 4px;
flex: 1;
height: 50px;
max-height: 50px;
display: flex;
flex-direction: row;
background-color: white;
border-radius: 10px;
font-weight: 400;
}

.docIcons_prest{
min-height: 30px;
max-height: 30px;
border: 1px solid black;
}

.selected{
  background-color: var(--main-light-color);
  color: white;
}

.docIcons_img{
  height: 50px;
  width: 50px;
  flex: 1;
}

.docIcons_img.selected{
  filter: invert(95%);
  background-color: transparent;
}


.docIcons_testi{
  display: flex;
  flex: 6;
  flex-direction: column;
  width: max-content;
  margin: auto auto;
  padding-left: 10px;
}

.docIcons_nome{
  font-size: 10px;
  flex: 1;
  width: max-content;
}

.docIcons_studio{
  font-size: 8pt;
  flex: 1;
  width: max-content;
}

#scegli_prestazione{
  display: flex;
  flex-direction: column;
}

.divPrest{
  background-color: white;
  border-radius: 10px;
  width: min-content;
  padding-left: 5px;
  padding-right: 5px;
}

.divPrest.selezionato{
  background-color: var(--main-light-color);
}

#elenco_prestazioni{
  display: flex;
  flex-wrap: wrap;
  flex: row;
}

.hidden {
display: none;
}

.card{
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.card_img_section{
  height: 60px;
  width: 60px;
}
