

.tte-selectable-list-container {
    max-width: 400px;
    width: 100%;

    max-height: 75vh;
    overflow: auto;
}

.tte-selectable-list-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.3s;
    border:4px solid #fff;
}

.tte-selectable-list-item img {
    width: 75%;
    height: auto;
}

.tte-selectable-list-item-header {
    font-weight: bold;
    font-size: 1.2em;
}

.tte-selectable-list-item:hover {
    background-color: #e0e0e0;
}

.tte-selectable-list-selected {
    /*background-color: #007bff;*/
    border-color:#007bff;
}
/* Improve accessibility focus outline */
.tte-selectable-list-item:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}