.vpf-finder {
    margin: 20px 0;
    font-family: sans-serif;
}
.vpf-language-switcher {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
    justify-content: flex-end;
}
.vpf-language-switcher a {
    padding: 4px 10px;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.2s;
}
.vpf-language-switcher a.active {
    background: #0073aa;
    color: #fff;
}
.vpf-language-switcher a:hover {
    background: #ddd;
}
.vpf-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}
.vpf-select {
    flex: 1 1 150px;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    font-size: 16px;
    min-width: 0;
}
.vpf-selector input[type="text"] {
    flex: 1 1 180px;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    min-width: 0;
}
.vpf-button {
    flex: 0 0 auto;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}
.vpf-button:hover {
    background: #005a87;
}
.vpf-voice-btn {
    flex: 0 0 44px;
    height: 44px;
    padding: 0;
    background: #eee;
    border: 1px solid #ccc;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.vpf-voice-btn.listening {
    background: #ff4444;
    color: #fff;
    border-color: #ff4444;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.vpf-results {
    margin-top: 20px;
}
@media (max-width: 600px) {
    .vpf-language-switcher {
        justify-content: center;
    }
    .vpf-selector {
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        gap: 8px;
    }
    .vpf-select {
        flex: 1 1 auto;
        width: 100%;
        font-size: 16px;
    }
    .vpf-selector input[type="text"] {
        width: 100%;
        flex: 1 1 auto;
    }
    .vpf-button {
        width: 100%;
        justify-content: center;
    }
    .vpf-voice-btn {
        align-self: center;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}