﻿.selector {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: calc(100% - 2rem);
    box-shadow: 8px 12px 22px 8px rgba(0,0,0,0.2);
    z-index: 1;
    max-height: 40vh; /* Set max height to enable scrolling */
    overflow-y: auto; /* Enable vertical scrolling */
    border-radius: 10px;
}

.selectorContainer {
    color: black;
    text-decoration: none;
    display: block;
}

.selectorOption:hover {
    background-color: blue;
    color: #ffffff;
}

.selectorOption {
    padding-left: 10px;
    padding-right: 10px;
}
