@media (max-width: 768px) {
    .ot-result-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


}

/* Styling for the Go-to input box */
#go-to-input {
    width: fit-content;
    /** 120px;*/
    height: fit-content;
    /**30px; **/
    padding: 5px;
    border: 2px solid #007bff;
    border-radius: 5px;
    background-color: #f0f8ff;
    color: #000;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    text-align: center;
    text-decoration: solid;
}

/* Focus effect to highlight input */
#go-to-input:focus {
    outline: none;
    border-color: #0056b3;
    background-color: #e9f7fe;
}

/* Optional: When invalid input is entered (if you want to show red border for invalid value) */
#go-to-input:invalid {
    border-color: #dc3545;
    background-color: #f8d7da;
}

/* Style for the / separator */
.separator {
    font-size: 24px;
    font-weight: bold;
    margin: 0 5px;
}


.gap-2_custom {
    gap: .5rem
}

.justify-center_custom {
    justify-content: center
}

.flex_custom {
    display: flex;
    padding-top: 2rem;
}



#clear-btn {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
    cursor: pointer;
}

#searchform:hover #clear-btn {
    opacity: 1;
    visibility: visible;
}

#description-tile {
    max-height: 35px;

}