.invoice-create-dialog .dialog-summary {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-end;
}

.invoice-create-dialog .dialog-summary-row {
    display: inline-flex;
    gap: 12px;
    font-weight: 600;
}

.invoice-create-dialog .floating-field {
    position: relative;
    padding-top: 0.0rem;
    min-height: 46px;
}

.invoice-create-dialog .floating-field .floating-label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    transition: opacity 0.2s ease, transform 0.2s ease;
    color: #94a3b8;
    font-size: 0.9rem;
    pointer-events: none;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: calc(100% - 0.8rem);
    display: block;
}

.invoice-create-dialog .floating-field.filled .floating-label {
    top: -1rem;
    transform: translateY(0);
    font-size: 0.75rem;
    color: #2563eb;
    opacity: 1;
    left: 0.2rem;
}

.invoice-create-dialog .floating-field:focus-within .floating-label {
    top: -1rem;
    transform: translateY(0);
    font-size: 0.75rem;
    color: #2563eb;
    opacity: 1;
    left: 0.2rem;
}

.invoice-create-dialog .floating-field .rz-inputtext,
.invoice-create-dialog .floating-field textarea,
.invoice-create-dialog .floating-field input {
    background: transparent;
    text-overflow: ellipsis;
}

.invoice-create-dialog .currency-suffix-field {
    padding-right: 2.25rem;
    position: relative;
}

.invoice-create-dialog .currency-suffix-field .currency-suffix {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: #94a3b8;
    pointer-events: none;
    z-index: 1;
}

.invoice-create-dialog .currency-suffix-field .rz-inputtext,
.invoice-create-dialog .currency-suffix-field input {
    padding-right: 2.25rem;
}

.invoice-create-dialog .dialog-lines {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
