/* Missatge landing */
#widget_disculpeumolesties {
  background-color: black; /*Aixo es el fons*/
  color: white; /*Aixo es la lletra*/
  padding: 20px 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  line-height: 1.6;
  position: relative;
}

/* Dates visites */
.visites {
  margin: 0 auto;
  text-align: center;
}

.visites h2 {
  font-size: 2rem;
  margin-bottom: 0.5em;
}

.visites p {
  font-size: 1rem;
  margin-bottom: 2em;
  color: #444;
}

.mesos-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.mesos-fila {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.calendar-card {
  width: 80px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  border: 1px solid black;
  border-radius: 4px;
  overflow: hidden;
}

.calendar-top {
  background-color: white;
  color: black;
  padding: 6px 0;
}

.year {
  color: white;
  font-weight: bold;
  padding: 4px 0;
  background-color: #004E95; /*Aqui es canvia el color de fons de la caixa de l'any*/
}

.month {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: bold;
}

.day {
  font-size: 1.5rem;
  font-weight: bold;
}

/*FOOTER*/
#container-comp10_main {
  background-color: black;
  color: white;
}

#widget_esquerra a {
  display: inline-block;
}

#widget_esquerra img:hover {
  opacity: 0.8;
}

#widget_centre {
  margin-left: 30px;
  margin-top: 33px;
}

#widget_dreta {
  height: 100%;
}

.icons-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.icons-container a {
  color: #ffffff;
  font-size: 22px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.icons-container a:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}