﻿body {
}

.custom-select {
    position: relative;
    width: 200px;
    float: right;
}

.select-selected {
    background-color: white;
    padding: 8px 16px;
    border: 1px solid #ccc;
    cursor: pointer;
}

.select-items {
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border: 1px solid #ccc;
    border-top: none;
    display: none;
}

.select-item {
    padding: 8px 16px;
    cursor: pointer;
}

.select-item:hover {
    background-color: #f1f1f1;
}
