.dialog-dropdown {
    height: auto;             /* Ensures dropdown height adjusts for content */
    max-height: 200px;        /* Sets max height for about 10 items, adjust as needed */
    overflow-y: auto;         /* Enables vertical scrolling */
    border: 1px solid lightgray;
}

.dialog-dropdown-option {
    padding: 4px;
    background-color: white;
    border-bottom: 1px solid #eee;
}

.dialog-dropdown-option:hover {
    background-color: #f1f1f1;
}

.dialog-dropdown-selected-option {
    background-color: #cce5ff; /* Highlight color */
    font-weight: bold;
}