/* Stili per i risultati di validazione */
.pointer {
    cursor: pointer;
}
.validation-results {
    font-family: Arial, sans-serif;
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .validation-status {
    padding: 10px;
    font-weight: bold;
    font-size: 1.1em;
    color: white;
  }
  
  .validation-status.valid {
    background-color: #4CAF50;
  }
  
  .validation-status.invalid {
    background-color: #F44336;
  }
  
  .section-title {
    padding: 10px;
    margin: 0;
    font-size: 1em;
    color: white;
  }
  
  .error-title {
    background-color: #D32F2F;
  }
  
 
  
  .error-list, .warning-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .error-item, .warning-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
  }
  
  .error-item:last-child, .warning-item:last-child {
    border-bottom: none;
  }
  
  .error-item {
    background-color: #FFEBEE;
  }
  

  
  .message {
    font-weight: normal;
    margin-bottom: 5px;
    background-color: rgba(73, 69, 69, 0.031);
    border: #66666689 1px solid;
    padding: 5px;
    border-radius: 4px;
    line-height: normal;
  }
  
  .context {
    font-size: 0.9em;
    color: #666;
    font-style: italic;
  }
  .warning-title {
    background-color: #FF9800;
  }
  .warning-item {
    background-color: #FFF3E0;
  }
  .warning-item.notice {
    background-color: #d6eaee;
  }
  .warning-item.notice   .warning-title {
    background-color: #3bdeff;
  }