@CHARSET "UTF-8";

.combo-container {
    position: relative;
    display: inline-block;
    width: 65px; /* inputボックス横幅 */
    font-family: sans-serif;
}

.combo-input {
    width: 100%;
    height: 23px;
    padding: 2px 20px 2px 5px;
    border: 1px solid #7a7a7a;
    box-sizing: border-box;
    font-size: 13px;
    outline: none;
}

.combo-arrow {
    position: absolute;
    right: 1px;
    top: 1px;
    bottom: 1px;
    width: 18px;
    background: #ececec;
    border-left: 1px solid #7a7a7a;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.combo-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #7a7a7a;
    background: #fff;
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: 200px; /* 縦幅（データ表示数） */
    overflow-y: scroll;
    display: none;
    z-index: 1000;
}

.combo-list li {
    padding: 2px 5px;
    font-size: 13px;
    cursor: default;
    text-align: left !important;
}

.combo-list li:hover {
    background-color: #0066cc;
    color: #fff;
}

.combo-list::-webkit-scrollbar {
    width: 14px;
}
.combo-list::-webkit-scrollbar-thumb {
    background: #999;
    border: 3px solid #fff;
    border-radius: 10px;
}
.combo-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}