.search-status-typing {
    position: absolute;
    top: 90px;
    left: 0;
    /* Align to the left edge */
    padding-left: 128px;
    /* Apply padding inside, not outside */
    box-sizing: border-box;
    /* Forces 100% width to include padding */
    width: 100%;

    pointer-events: none;
    z-index: 100;
    font-family: 'Roboto Mono', monospace;
    color: white;
    font-size: 18px;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    white-space: pre-wrap;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.search-status-typing.visible {
    opacity: 1;
    visibility: visible;
}

/* Blinking cursor */
.search-status-typing::after {
    content: '|';
    color: #4CAF50;
    animation: blink-cursor 1.2s infinite;
    margin-left: 2px;
}

@keyframes blink-cursor {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}