/* Estilos gerais do plugin */
.consulta-placa-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-consulta-placa {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e1e1;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.btn-consultar {
    background: #0073aa;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-consultar:hover {
    background: #005a87;
}

/* Estilos da página de resultados */
.placa-fipe-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.placa-fipe h1 {
    color: #333;
    margin-bottom: 30px;
    font-size: 2.5em;
    text-align: center;
}

.preco-destaque {
    background: #f0f7fb;
    border-left: 5px solid #0073aa;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

.preco-destaque h2 {
    color: #0073aa;
    font-size: 2em;
    margin: 0;
}

.preco-destaque .valor {
    font-size: 3em;
    font-weight: bold;
    color: #333;
}

.mes-referencia {
    color: #666;
    font-size: 1.1em;
}

.dados-veiculo {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
}

.dados-veiculo h3 {
    color: #333;
    margin-bottom: 15px;
}

.dados-veiculo ul {
    list-style: none;
    padding: 0;
}

.dados-veiculo li {
    padding: 8px 0;
    border-bottom: 1px solid #e1e1e1;
}

.dados-veiculo li:last-child {
    border-bottom: none;
}

.dados-veiculo strong {
    color: #0073aa;
    margin-right: 10px;
}

.historico-precos {
    margin-top: 30px;
}

.historico-precos h3 {
    color: #333;
    margin-bottom: 15px;
}

.historico-precos table {
    width: 100%;
    border-collapse: collapse;
    background: #f9f9f9;
}

.historico-precos th,
.historico-precos td {
    padding: 10px;
    border: 1px solid #e1e1e1;
    text-align: center;
}

.historico-precos th {
    background: #0073aa;
    color: white;
    font-weight: 600;
}

.historico-precos tr:nth-child(even) {
    background: #f5f5f5;
}

/* Responsividade */
@media (max-width: 768px) {
    .consulta-placa-container,
    .placa-fipe-container {
        margin: 20px;
        padding: 20px;
    }
    
    .placa-fipe h1 {
        font-size: 1.8em;
    }
    
    .preco-destaque .valor {
        font-size: 2.2em;
    }
}