/* Dropdown Button */
.dropbtn {
    margin: 0px;
    background-color: #ffb6ff;
    color: black;
    padding: 4px 8px 5px 8px;
    font-size: 18px;
    border-top-color: white;
    border-width: 2px;
    font-family: "Arial Black", Arial;
    cursor: pointer;
    width: 250px;
    overflow: hidden;
}

.button-list {
    width: 100px;
    height:30px;
    color: #fff;
    background-color: #bf1e2e;
    border: 1px;
    margin-right: 5px;
    margin-top: 5px;
    cursor: pointer;
}

.text-list {
    width: 250px;
    height: 21px;
    padding: 3px;
    border: 1px #c0c0c0 solid;
}

.dropbtn span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    width: 250px;
    height: 25px;
}

.dropbtn::after {
    font-size: 10px;
    margin-left: 4px;
    content: "▼";
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content .row {
    margin-left: 0px;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    display: flex;
    justify-content: space-between;
}

.row.divider {
    border-bottom: 2px solid #c0c0c0;
}

.dropdown-content a {
    color: blue;
    text-decoration: none;
    cursor: pointer;
}

.dropdown-content .item{
    width: 100%;
    cursor: pointer;
}

.btn-close {
    font-size: 10px;
    text-decoration: none;
    font-weight: bold;
}

.tbody-list {
    height: 210px;
    overflow: scroll;
    background-color: #ffffcc;
    padding: 4px 30px;
    border: 1px solid;
    margin-left: 0px;
    margin-bottom: 5px;
}

@keyframes blinkingFrames {
    0% {opacity: 1.00;}
    100% {opacity: 0.95; background-color: #ffffcc;}
}

.blinking {
    animation-name: blinkingFrames;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
}

/* Change color of dropdown links on hover */
.dropdown-content .row:hover {background-color: #ddd;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}