.vd-wrapper {
    width: 100%;
    font-family: sans-serif;
}

.vd-filter {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.vd-field {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 8px;
    min-width: 250px;
}

.vd-field label {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.vd-field select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
}

#vd-show {
    padding: 12px 40px;
    border: none;
    border-radius: 8px;
    background: #ff5d67;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    align-self: flex-end;
    transition: 0.2s ease;
}

#vd-show:hover {
    opacity: 0.9;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.vd-error {
    font-size: 14px;
}

@media (max-width: 768px) {
    .vd-filter {
        flex-direction: column;
        align-items: stretch;
    }

    .vd-field {
        width: 100%;
        min-width: 100%;
    }

    #vd-show {
        width: 100%;
        padding: 12px;
    }
}