/* org-autocomplete.css */
#result {
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    z-index: 1000;
}
.org-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}
.org-item:last-child {
    border-bottom: none;
}
.org-item:hover,
.org-item.active {
    background-color: #007bff;
    color: #fff;
}
.autocomplete-result {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 4px;
    padding: 0;
}

.autocomplete-result .org-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.autocomplete-result .org-item:last-child {
    border-bottom: none;
}

.autocomplete-result .org-item.active,
.autocomplete-result .org-item:hover {
    background-color: #007BFF;
    color: white;
}

