<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Shepherd tooltip generale */

/* ===================================================================
 * FIX PER SHEPHERD.JS - Allineamento Angoli
 * =================================================================== */
.shepherd-target {
    border-radius: 0 !important;
}
.shepherd-target .meta-sentenza{
  border-radius: 0 !important;
} /*fine*/
.shepherd-element {
  z-index: 99999 !important;
  max-width: 400px !important;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  overflow: visible;
  background: #fff;
}

/* Layout e padding */
.shepherd-content {
  padding: 20px !important;
}

.shepherd-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.shepherd-text {
  font-size: 15px;
  line-height: 1.5;
}

/* Pulsanti */
.shepherd-footer .shepherd-button {
  margin: 0 5px;
}
.shepherd-button {
  padding: 6px 12px;
  margin-left: 5px;
  background-color: #0056b3;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}
.shepherd-button:hover {
  background-color: #003d80;
}

/* Pulsante di chiusura */
.shepherd-cancel-icon {
  top: 8px;
  right: 10px;
  width: 24px;
  height: 24px;
  color: #888;
}
.shepherd-cancel-icon:hover {
  color: #000;
}

/* Overlay */
.shepherd-modal-overlay-container {
  z-index: 99998 !important;
  background-color: rgba(0, 0, 0, 0.4);
}

/* Rimozione padding esterno su mobile */
@media (max-width: 576px) {
  .shepherd-element {
    width: calc(100% - 30px);
    left: 15px !important;
    right: 15px !important;
  }
}

/* Freccia visibile e coerente */
.custom-shepherd-theme .shepherd-arrow {
  width: 16px;
  height: 16px;
  overflow: hidden;
}
.custom-shepherd-theme .shepherd-arrow:before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: white;
  transform: rotate(45deg);
  box-shadow: -1px -1px 2px rgba(0,0,0,0.1);
  top: 0;
  left: 0;
}
.tour-focus {
  outline: 3px solid red;
  border-radius: 8px;
  transition: outline 0.3s ease;
}
.button-filter{
  position: fixed;
  bottom: 15px;
  right: 35px;
  z-index: 9999;
}
@keyframes pulse-blue {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
  }
}

.guida-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  background-color: #0d6efd;
  color: white;
  border: none;
  animation: pulse-blue 2s infinite;
}
.guida-btn:hover {
   background-color: #0852c0;
   color: white;
}

.guida-btn i {
  font-size: 18px;
}</pre></body></html>