.pvai-container {
    max-width: 600px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.pvai-form-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 50px;
    border: 1px solid #96917a;
    box-shadow: 0 2px 10px #96917a85;
}

.pvai-form-wrapper h3 {
    margin: 0 0 10px 0;
    font-size: 28px;
    color: #333;
}

.pvai-form-wrapper p {
    margin: 0 0 20px 0;
    color: #666;
    font-size: 14px;
}

.pvai-input-group {
    display: flex;
    gap: 10px;
}

#pvai-address-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
}

#pvai-address-input:focus {
    outline: none;
    border-color: #96917a;
}

.pvai-btn-search {
    padding: 12px 24px;
    background: #96917a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.pvai-btn-search:hover {
    background: #807e3d;
}

.pvai-btn-search:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.pvai-loader {
    display: inline-block;
}

.pvai-results {
    margin-top: 20px;
}

.pvai-result-card {
    background: #f8f9fa;
    border-radius: 0px;
    padding: 20px;
}

.pvai-result-header h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 18px;
}

.pvai-result-price,
.pvai-result-sources {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.pvai-result-sources {
    border-bottom: none;
}

.pvai-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.pvai-disclaimer {
    font-size: 10px;
    color: #3a3a3a;
    margin-bottom: 5px;
}

.pvai-value {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.pvai-result-price .pvai-value {
    font-size: 24px;
    color: #9ba142;
}

.pvai-error {
    margin-top: 20px;
    padding: 15px;
    background: #ffebee;
    border-left: 4px solid #f44336;
    border-radius: 8px;
}

.pvai-error p {
    margin: 0;
    color: #c62828;
}

@media (max-width: 600px) {
    .pvai-input-group {
        flex-direction: column;
    }

    .pvai-btn-search {
        width: 100%;
    }
}

.pvai-result-meta {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pvai-result-meta small {
    color: #999;
    font-size: 13px;
}

.pvai-btn-refresh {
    padding: 6px 12px;
    background: #2196F3;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s;
}

.pvai-btn-refresh:hover {
    background: #1976D2;
}

.pvai-btn-refresh:disabled {
    background: #cccccc;
    cursor: not-allowed;
}