﻿.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; }
   .comparison-table {
      width: 100%;
      border-collapse: collapse;
      margin: 1.5em 0;
      font-size: 0.95em;
    }
    .comparison-table th {
      background: #4a90d9;
      color: #fff;
      padding: 10px 14px;
      text-align: left;
    }
    .comparison-table td {
      padding: 9px 14px;
      border-bottom: 1px solid #e0e0e0;
    }
    .comparison-table tr:nth-child(even) td {
      background: #f5f8fd;
    }
    .comparison-table code {
      background: #e8f0fb;
      padding: 2px 6px;
      border-radius: 3px;
    }