.cdw-context-tax {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
    transition: all 0.2s ease;
}

.cdw-context-tax h3#choose-tax {
    margin: 0 0 16px 0;
    font-size: 14px;
    font-weight: 600;
    color: #0c4a6e;
}

.cdw-context-tax-info {
    display: none;
    animation: cdw-vat-slide-down 0.3s ease-out;
}

@keyframes cdw-vat-slide-down {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.active .cdw-context-tax-info {
    display: block;
}

.choose-tax_label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin: 0;
    font-weight: 500;
    transition: color 0.2s ease;
    font-size: 14px;
}

.choose-tax_label:hover {
    color: #0369a1;
}

.choose-tax_label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: #0ea5e9;
}

.cdw-context-tax-info fieldset {
    border: 1px solid #0ea5e9;
    border-radius: 6px;
    padding: 16px;
    margin: 12px 0;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cdw-context-tax-info fieldset legend {
    background: white;
    padding: 0 8px;
    font-size: 14px;
    font-weight: 500;
    color: #0c4a6e;
}

.cdw-context-tax-info .form-row {
    margin-bottom: 16px;
}

.cdw-context-tax-info .form-row:last-child {
    margin-bottom: 0;
}

.cdw-context-tax-info input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.cdw-context-tax-info input[type="text"]:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.cdw-context-tax-info label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.cdw-context-tax-info label .required {
    color: #ef4444;
}
