.vocab-container {
    margin: 20px 0;
}

.vocab-item {
    display: flex;
    justify-content:left;
    padding: 10px;
    border-bottom: 1px solid #444;
}

.shortcut {
    color: #ff4d4d;
    font-weight: bold;
    font-size: 1.2em;
    padding-right: 5px;
}

.description {
    color: #cccccc;
    text-align: left;
}

#shortcutSearch {
    width: 250px;
    padding: 8px;
    margin-right: 10px;
    border: 1px solid #4a4a4a;
    border-radius: 5px;
    background-color: #2b2b2b;
    color: #f0f0f0;
    font-size: 14px;
    box-sizing: border-box;
    height: 38px;
    line-height: 22px;
}

.custom-select {
    position: relative;
    display: inline-block;
    width: 250px;
    height: 38px;
    cursor: pointer;
    user-select: none;
    box-sizing: border-box;
}

.selected-option {
    padding: 8px;
    border: 1px solid #4a4a4a;
    border-radius: 5px;
    background-color: #2b2b2b;
    color: #f0f0f0;
    font-size: 14px;
    box-sizing: border-box;
    height: 38px;
    display: flex;
    align-items: center;
}

.select-options {
    position: absolute;
    width: 100%;
    display: none;
    background-color: #2b2b2b;
    border: 1px solid #4a4a4a;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    box-sizing: border-box;
}

.select-options li {
    padding: 8px;
    display: flex;
    align-items: center;
    color: #f0f0f0;
    font-size: 14px;
}

.select-options li:hover {
    background-color: #007bff;
}

.select-options img {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.custom-select.open .select-options {
    display: block;
}

#shortcutSearch:focus {
    outline: none;
    border-color: #007bff;
}
