.tick {
    display: none;
}
.success .tick { 
    display: inline;
}
.flex {
    display: flex;
    flex-wrap: nowrap; /* Prevent the items from wrapping to a new line */
    gap: 8px; /* Adjust space between buttons */
}

.action_icon {
     cursor: pointer;
     color: slategray;
}

body {
    font-family: monospace;

}
.action_result {
     font-size: xx-small;
}

/* Styling for the suggestion dropdown */
.suggestions {
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    width: 61%;
    margin-top: 2px;
}
.suggestion-item {
    padding: 5px;
    cursor: pointer;
}
.suggestion-item:hover {
    background-color: #f3f4f6;
}
.suggestion-item.active {  
    background-color: #f3f4f6;  
} 
