/* js/custom-select.css */

.custom-select-container {
    position: relative;
    width: 100%;
}

.select-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid #d1d5db; /* gray-300 */
    border-radius: 0.375rem; /* rounded-md */
    background-color: white;
    cursor: pointer;
    height: 42px;
}

.select-value {
    font-size: 0.875rem; /* text-sm */
    color: #374151; /* gray-700 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.arrow {
    border: solid #374151; /* gray-700 */
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    transition: transform 0.2s ease-in-out;
}

.select-button.open .arrow {
    transform: rotate(-135deg);
}

.select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid #d1d5db; /* gray-300 */
    border-top: none;
    border-radius: 0 0 0.375rem 0.375rem;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none; /* Hidden by default */
}

.select-dropdown.show {
    display: block;
}

.select-dropdown li {
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.select-dropdown li:hover {
    background-color: #f3f4f6; /* gray-100 */
}

.select-dropdown li input[type="checkbox"] {
    margin-right: 8px;
}

.select-dropdown li label {
    font-size: 0.875rem; /* text-sm */
    color: #374151; /* gray-700 */
    cursor: pointer;
    flex-grow: 1;
}
