/* searching solution */
.jek-search-wrapper {
    position: relative;
}

.jek-workout-search {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.jek-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 9999;
}

.jek-result-item {
    padding: 8px;
    cursor: pointer;
}

.jek-result-item:hover {
    background: #f0f0f0;
}
