.tata-card {
  max-width: 300px;
		min-width: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #fff;
  margin: 20px auto;
  font-family: "Segoe UI", sans-serif;
		cursor: pointer;
}

@media (max-width: 992px) {
  .tata-card {
    width: calc(50% - 20px); /* 2 card per riga su tablet */
  }
}

@media (max-width: 600px) {
  .tata-card {
    width: 100%; /* 1 card per riga su mobile */
  }
}


.tata-image {
  position: relative;
}

.tata-image img {
  width: 100%;
  display: block;
}

.online-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #1abc9c;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.tata-info {
  position: absolute;
  top: 16px; /* Posizioniamo il div in alto */
  left: 16px;
  color: #fff;
  text-shadow: 0 0 5px #000;
}


.tata-info h3 {
  margin: 0;
  font-size: 18px;
}

.tata-info span {
  font-weight: normal;
}

.tata-info .location {
  font-size: 20px;
}

.tata-details {
  padding: 15px;
}

.rate-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  margin-bottom: 8px;
}

.rating {
  color: #f1c40f;
  font-weight: bold;
}

.days-available {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-top: 5px;
}

.days-available span {
  background: #2c3e50;
  color: white;
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 13px;
}

.tata-container {
  display: flex;
  gap: 20px; /* Distanza tra le card */
  flex-wrap: wrap; /* Permette che le card vadano a capo su schermi più piccoli */
  justify-content: flex-start; /* Allinea le card all'inizio */
}
.online-badge {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: #1abc9c;
  color: white;
  padding: 0px 6px;
  border-radius: 20px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  gap: 10px;
}

.label-text {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.2;
}

.price-text {
  display: flex;
  align-items: baseline;
}

.highlighted-price {
  font-size: 36px;
  color: white;
  margin-right: 2px;
}

.euro-hour {
  font-size: 14px;
}

.no-nanny-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 75vh;
  background: #fffaf5;
  padding: 40px 20px;
}

.no-nanny-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 40px;
  max-width: 480px;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  color: #4b2c48;
}

.no-nanny-card img {
  /*width: 120px;
  margin-bottom: 20px;*/
  opacity: 0.95;
}

.no-nanny-card h2 {
  font-size: 1.8rem;
  color: #7d4c7c;
  margin-bottom: 10px;
}

.no-nanny-card p {
  font-size: 1rem;
  margin: 6px 0;
}

.suggestion {
  color: #888;
  font-size: 0.95rem;
}

.search-again-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #b07ba3;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.search-again-btn:hover {
  background: #9a5c8c;
}
.bottom-title {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 20px;
}

.qa-details {
  background: #fdfdfd;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.faq-container {
  max-width: 800px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-question {
  background-color: #f0f0f0;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  background-color: #fff;
  border-top: 1px solid #ddd;
}
.titolo-genitori {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.5rem;
    color: #4B2E83; /* un bel viola professionale */
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
}

.titolo-genitori::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #C19A6B; /* oro tenue */
    margin: 10px auto 0 auto;
    border-radius: 2px;
}
.faq-section {

  padding: 60px 20px;
  text-align: center;

}

.faq-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.faq-header p {
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.um-account-tab
{
		float: left;
  width: 70%;
  padding: 0 0 0 1.5em;
  box-sizing: border-box;
}

#um_account_submit_questionario
{
	display:none !important;		
}

.menu-item-campanella {
    margin-left: 10px;
}

.menu-item-campanella a {
    display: flex;
    align-items: center;
    padding: 0 8px;
}

#notification-bell {
  position: relative;
  margin-left: 15px;
}

.badge {
  background: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
  position: absolute;
  top: -5px;
  right: -10px;
  display: none;
}

@media (max-width: 768px) {
  /* Selettore del bottone torna su */
  #scroll-to-top {
    right: auto !important;   /* disabilita la posizione a destra */
    left: 20px !important;    /* sposta a sinistra, regola il valore px come vuoi */
  }
}
.free-banner {
  background: linear-gradient(90deg, #ffe799, #fff3cd);
  border-left: 6px solid #ffc107;
  padding: 20px;
  margin: 20px auto;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  font-family: 'Segoe UI', sans-serif;
}

.free-banner-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.free-banner .icon {
  font-size: 48px;
  color: #ffc107;
}

.free-banner h2 {
  margin: 0;
  font-size: 24px;
  color: #333;
}

.free-banner p {
  margin: 4px 0 0 0;
  font-size: 16px;
  color: #555;
}

.fc-event.evento-prenotato {
    background-color: #d9534f !important; /* rosso */
    border-color: #d43f3a !important;
    cursor: not-allowed;
    color: white;
    font-weight: bold;
}