.flex-end {
    display: flex;
    justify-content: flex-end;
}

.base-information {
    background-color: #fbe9da; /* мягкий вариант #f8ac59 */
    border: 1px solid #f8ac59;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.base-information.completed {
    background-color: #e6f4e9;
    border-color: #5cb85c;
    color: #3c763d;
}

.base-information-wrapper {
    margin-top: 10px;
    text-align: center;
}

#description-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border: 1px solid #ccc;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    margin-right: 15px;
    margin-left: 15px;
}

.input-clear-wrapper .clear-icon {
    position: absolute;
    right: 20px;
    top: 58%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #ccc;
    display: none;
}

.input-clear-wrapper input:not(:placeholder-shown) + .clear-icon {
    display: block;
}

.clear-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0; /* очень светло-серый фон */
    color: #777777;            /* мягкий серый текст */
    border-radius: 50%;
    height: 20px;
    width: 20px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 14px;
    line-height: 1;
    box-shadow: 0 0 3px rgba(0,0,0,0.05);
    padding-left: 6px;
    padding-top: 3px;
}

.clear-icon:hover {
    background-color: #e0e0e0; /* чуть темнее при наведении */
    color: #555555;
}