.input-row-inline {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.6rem;
    height: 64px;
}

.input-row-inline > .input-wrapper {
    overflow: visible;
    flex: 0 1 80%;
}

.input-row-inline > .undo-btn {
    flex: 0 1 20%;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper .copy-btn {
    position: absolute;
    right: 0.5rem;
    z-index: 15;
}

.clear-btn {
    position: absolute;
    left: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.4rem;
    height: 1.4rem;
    padding: 0;
    color: var(--muted);
    font-size: var(--font-size-medium);
    line-height: 1;
    transition: color 0.2s, transform 0.15s;
    z-index: 15;
}

.clear-btn:hover {
    color: var(--text);
    transform: scale(1.2);
}

.clear-btn:active {
    transform: scale(0.85);
    transition: color 0.1s, transform 0.07s;
}

.clear-icon {
    width: 14px;
    height: 14px;
    display: block;
}

#timestamp {
    height: 100%;
    width: 100%;
    padding: 0 3.2rem 0 2.4rem;
    font-size: var(--font-size-bigger);
    background: var(--input-bg);
    color: var(--text);
    border: var(--border-default);
    border-radius: 5px;
    outline: none;
    transition: border-color 0.2s, transform 0.15s;
}



#timestamp::placeholder {
    color: var(--muted);
}

.undo-btn {
    background: var(--input-bg);
    box-shadow: 0 1px 0 0 var(--border);
    font-size: var(--font-size-small);
    flex-shrink: 0;
    white-space: nowrap;
    text-transform: uppercase;
    border: var(--border-default);
    transition: transform 0.15s ease,
        background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, box-shadow 0.1s;
}

.undo-btn:not(:disabled):active {
    transform: translateY(2px);
    box-shadow: none;
}

