@media (max-width: 767px) {
  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    color: #007bff;
    font-weight: bold;
  }
}

/* Stile migliorato per il risultato della ricerca pianoforte */
#risultatoAutoComp {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  border: 2px solid #c3a572;
  border-radius: 15px;
  padding: 25px;
  margin-top: 20px;
  box-shadow: 0 8px 25px rgba(195, 165, 114, 0.2);
  color: #ecf0f1;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
  display: none;
}

#risultatoAutoComp::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(195, 165, 114, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

#risultatoAutoComp p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
  color: #ecf0f1;
}

#risultatoAutoComp p:first-child {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  border-bottom: 2px solid #c3a572;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* Stili per etichette e valori */
#risultatoAutoComp .label {
  color: #c3a572;
  font-weight: 600;
}

#risultatoAutoComp .value {
  color: #ffffff;
  font-weight: 400;
}

#risultatoAutoComp p:last-child {
  margin-bottom: 0;
  font-style: italic;
  background: rgba(195, 165, 114, 0.1);
  padding: 15px;
  border-radius: 8px;
}

#risultatoAutoComp a {
  color: #c3a572;
  text-decoration: none;
  font-weight: 500;
  padding: 2px 5px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

#risultatoAutoComp a:hover {
  background-color: #c3a572;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(195, 165, 114, 0.3);
}

/* Icona decorativa */
#risultatoAutoComp::after {
  content: '🎹';
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  #risultatoAutoComp {
    padding: 20px;
    margin-top: 15px;
  }
  
  #risultatoAutoComp p:first-child {
    font-size: 16px;
  }
  
  #risultatoAutoComp p {
    font-size: 14px;
  }
}

/* Stile per link ultimo aggiornamento */
.entry-meta-top a:hover {
  color: #dac39b !important;
}