.options>li:before {display:none;}

ul.options {
	list-style-type:none;
}

.results-panel {  
    min-height: 150px; 
    padding: .5rem;
    font-size: 0.9rem;
}
.results-placeholder, .results-success {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 120px;
    color: var(--gray-400);
    font-weight: 500;
}
.results-success {
    color: #28a745;
    font-weight: 600;
}
.result-item {
    padding: 12px 15px;
    border-bottom: 1px solid var(--bs-border-color);
    list-style: none;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px 15px;
    align-items: center;
	cursor: pointer;
    transition: 
        transform 0.15s ease,
        background-color 0.15s ease;
}
.result-item:hover {
    transform: translateX(4px);
    background-color: rgba(0, 0, 0, 0.03);
}
.result-item:last-child { border-bottom: none; }
.result-type {
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #fff;
    margin: 0 15px 0 5px;
    grid-row: 1 / span 2;
	width:80px;
	text-align:center;
}
.result-error .result-type { background-color: #dc3545; }
.result-warning .result-type { background-color: #ffc107; color: #333; }
.result-info .result-type { background-color: #1976D2; }
.result-line { font-family: monospace; color: #6c757d; font-size: 0.85rem; }
.result-message { font-weight: 500; margin: 0 !important; padding: 0; grid-column: 2; }
.result-rule { color: #6c757d; margin: 0 !important; padding: 0; font-size: 0.8rem; grid-column: 2; }
.results-list { margin: 0; padding: 0; }
.result-item { transition: background-color 0.2s; }

#stats-panel {
  background: #fff;
  border-radius: 8px;
  border:1px solid var(--bs-border-color);
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.stats-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6c757d;
  margin: 20px 0 10px 0;
  font-weight: bold;
}

.stats-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stats-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.stats-list li:last-child {
  border-bottom: none;
}

.stats-list span {
  color: #495057;
  font-size: 0.9rem;
}

.stats-list strong {
  font-family: 'Monaco', 'Consolas', monospace;
  background: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #dee2e6;
  font-size: 0.85rem;
}

.stat-error strong {
  color: #dc3545;
  border-color: #dc3545;
  background: #fff5f5;
}

.stat-warning strong {
  color: #856404;
  border-color: #ffc107;
  background: #fff3cd;
}

.stat-info strong {
  color: #0c5460;
  border-color: #17a2b8;
  background: #d1ecf1;
}

/* --- FAQ --- */
.faq-section {
  margin: 2em 0;
}
.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin-bottom: 1em;
  overflow: hidden;
}
.faq-item summary {
  padding: 1em 1.2em;
  font-weight: bold;
  cursor: pointer;
  background: #f8f9fa;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: '+ ';
  color: #4a90d9;
  font-weight: bold;
}
.faq-item[open] summary::before {
  content: '− ';
}
.faq-item p {
  padding: 1em 1.2em;
  margin: 0;
  border-top: 1px solid #e0e0e0;
}
.faq-item code {
  background: #e8f0fb;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.92em;
}