.validation-message {
    color: rgba(250, 80, 20, 0.95);
}

.vat-field-wrapper {
    display: flex;
    gap: 0.25rem;
    align-items: stretch;
}

.vat-field-wrapper input {
    flex: 1;
}

.vat-lookup-button {
    flex-shrink: 0;
    width: 2.5rem;
    padding: 0;
    border: 1px solid #ccc;
    background: #f9f9f9;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background-color 0.2s, border-color 0.2s;
}

.vat-lookup-button:hover:not(:disabled) {
    background-color: #f0f0f0;
    border-color: #999;
}

.vat-lookup-button:active:not(:disabled) {
    background-color: #e8e8e8;
}

.vat-lookup-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.vat-lookup-button__icon {
    display: block;
}

.vat-lookup-button__spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(100, 150, 255, 0.2);
    border-top-color: rgba(100, 150, 255, 0.8);
    border-radius: 50%;
    animation: vat-spinner-spin 0.8s linear infinite;
}

@keyframes vat-spinner-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.vat-lookup-suggestion {
    margin-top: 0.5rem;
    width: 100%;
    border: 1px solid #d9e6ff;
    background: #f5f9ff;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.vat-lookup-suggestion__name {
    font-weight: 600;
}

.vat-lookup-suggestion__address {
    white-space: pre-line;
}


