/* Обёртка поля, заполненного из данных пользователя (auth) */
.auth-filled-field {
    position: relative;
    display: block;
    width: 100%;
}

.auth-filled-field--locked .auth-filled-field__edit-btn {
    display: flex;
    color: #ffffff;
}

.auth-filled-field__edit-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    color: #555;
    border-radius: 4px;
    transition: color 0.2s ease, background 0.2s ease;
}

.auth-filled-field__edit-btn:hover {
    color: #00b129;
    background: rgba(0, 0, 0, 0.05);
}

.auth-filled-field--locked .auth-filled-field__edit-btn {
    display: flex;
}

.auth-filled-field__icon-svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Ширина инпутов не меняется — карандаш накладывается справа поверх */

/* Иконка белая на тёмных баннерах */
.calcBanner .auth-filled-field__edit-btn,
.smallBanner .auth-filled-field__edit-btn,
.findJur .auth-filled-field__edit-btn,
.jurSelection .auth-filled-field__edit-btn {
    color: #fff;
}

.calcBanner .auth-filled-field__edit-btn:hover,
.smallBanner .auth-filled-field__edit-btn:hover,
.findJur .auth-filled-field__edit-btn:hover,
.jurSelection .auth-filled-field__edit-btn:hover {
    color: #00b129;
    background: rgba(255, 255, 255, 0.1);
}
