/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 16/03/2023, 10:06:57
    Author     : dangr302
*/





.dropDownMenu1{
    position:relative;
    display:inline-block;
    padding:2px;
    cursor: pointer;
}
.dropDownMenu1Content{
    display:none;
    position:absolute;
    background-color: #f9f9f9;
    color:black;
    font-size:12px;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index:15000;
}
.dropDownMenu1:hover .dropDownMenu1Content{
    display:block;
}
.dropDownMenu1Content ul {
    list-style-type: none;
    margin:0;
    padding:0;
}
.dropDownMenu1Content ul a{
    padding:0;
    margin:0 ;
    display:flex;
}
.dropDownMenu1Content ul li {
    padding:6px;
    width:100%;
    border: thin solid #ddd;
}
.dropDownMenu1Content ul li:hover {
    background-color: dodgerblue;
    color:white;
    cursor: pointer;
}
dropDownMenu1 .button{
    display:flex;
    justify-content: space-between;
    align-items: center;
    border:thin solid #ccc;
    border-radius: 5px;
}