.procomp-password-inline-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.procomp-password-strength-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.procomp-password-strength-bar {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background-color: transparent;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.procomp-password-strength-fill {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: 3px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.procomp-password-strength-text {
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    min-width: 80px;
    text-align: right;
    transition: color 0.3s ease;
}

.procomp-password-strength-text.helper {
    color: #94a3b8;
    font-weight: 400;
}

.procomp-password-strength-text.short  { color: #f97316; }
.procomp-password-strength-text.weak   { color: #dc2626; }
.procomp-password-strength-text.fair   { color: #f59e0b; }
.procomp-password-strength-text.good   { color: #84cc16; }
.procomp-password-strength-text.strong { color: #16a34a; }
