/* Estilos para o Filtro de Pneus por Veículo */

.pax-filtro-container-elementor {
    position: relative;
}

.pax-filtro-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.pax-filtro-item {
    flex-grow: 1;
    min-width: 150px;
}

.pax-filtro-select,
.pax-filtro-submit {
    width: 100%;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background-color: #ffffff;
}

.pax-filtro-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23AAAAAA%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22/%3E%3C/svg%3E');
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 12px;
}

.pax-filtro-submit {
    background-color: #4CAF50;
    color: white;
    border: none;
}

.pax-filtro-submit:hover {
    background-color: #45a049;
}

.pax-filtro-select:disabled,
.pax-filtro-submit:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    background-color: #f0f0f0;
}

/* Indicador de Carregamento */
.pax-filtro-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
}

.pax-filtro-spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: pax-spin 1s linear infinite;
}

@keyframes pax-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Estilos para a área de resultados */
.pax-filtro-results-wrapper {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
    display: none; /* Escondido por padrão */
}

.pax-filtro-results-wrapper h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.pax-filtro-results-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pax-filtro-results-wrapper li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.pax-filtro-results-wrapper li:last-child {
    border-bottom: none;
}

.pax-tire-type {
    font-weight: bold;
    color: #555;
    margin-right: 10px;
    display: inline-block;
    width: 80px; /* Alinha os tipos */
}

.pax-tire-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.pax-tire-link:hover {
    text-decoration: underline;
}

.pax-filtro-error {
    color: #d9534f;
    font-weight: bold;
}
