

.menu-buttons{
    box-sizing: content-box !important;
    display:flex;
    /*Cada item tendra un tamanio minimo y se ajustara*/
    flex: 1 1 200px;
    width:100%;
    overflow-y:scroll;
    margin: 10px;
    padding: 0;
    flex-direction: row;
    flex-wrap: wrap;
    color:#666;
}
.menu-buttons li {
    border: none;
    max-width: 150px;
    width: 150px;
    height: 125px;
    border-radius: 10px;
    margin:10px;
    background-color: white;
    transition: background-color .7s;    
    box-shadow: 
    rgba(50, 50, 50, 0.4)    5px     5px, 
    rgba(50, 50, 50, 0.3)    8px     8px, 
    rgba(50, 50, 50, 0.2)    11px    11px, 
    rgba(50, 50, 50, 0.1)    14px    14px, 
    rgba(50, 50, 50, 0.05)   17px    17px;
}
.menu-buttons li .content {
    display: flex;
    padding:5px;
    overflow: hidden;
    word-break: break-word;
}
.menu-buttons li a {
    width: 100%;
    height: 100%;
    /*Para que ocupe todo el espacio*/
    display: block;
    color:#666;
}
.menu-buttons li a:visited  {
    color: purple;
}
.menu-buttons li:hover {
    border: none;
    background-color: #1c2531;
    color:white;
    box-shadow: 
    rgba(0, 99, 105, 0.4)    5px     5px, 
    rgba(0, 99, 105, 0.3)    8px     8px, 
    rgba(0, 99, 105, 0.2)    11px    11px, 
    rgba(0, 99, 105, 0.1)    14px    14px, 
    rgba(0, 99, 105, 0.05)   17px    17px;
}
.menu-buttons li .title {
    border-radius: 10px 10px 0 0;
    background-color: #ddd;
    padding:5px;
    color:#666;
    border:none;
    display:flex;
    box-shadow: 1px 1px black;
    /*Espacio entre los elementos del titulo*/
    gap:10px;
}

/*MENU 2*/

.menu-dashboard{
    box-sizing: content-box !important;
    display:flex;
    /*Cada item tendra un tamanio minimo y se ajustara*/
    width: 100%;
    height: 100%;
    flex-wrap:wrap;    
    margin: 10px;
    padding: 0;
    color:#666; 
    /*asegura que la alineacion sea desde arriba, muy importante*/
    align-content: flex-start;
    overflow-y: scroll;
    
}
.menu-dashboard li{
    margin:8px;
    background-color: white;
    padding:0px;
    border-radius: 25px;
    min-height: 150px;
    flex: 0 0 250px !important;
    box-shadow: 2px 2px 4px 2px #ccc;
    position: relative;
    overflow: hidden;
}
.menu-dashboard li:hover {
    box-shadow: 2px 2px 4px 2px #000;
    animation-name:  menu-dashboard-ani1;
    animation-duration: 0.3s;
}
@keyframes menu-dashboard-ani1{
    from{ box-shadow:2px 2px 4px 2px #ccc;
     }
    to{   box-shadow:2px 2px 4px 2px #666;
    }
}
.menu-dashboard a{
    width:100%;
    height: 100%;
    cursor: pointer;
    display:flex;
    border-radius: 25px;
}
.menu-dashboard li .title{
    color: black;
    font-weight: bold;
    padding:15px;
    
}
.menu-dashboard li .content{
    display: none;
}
.menu-dashboard li .circulo {
    width:  120px;
    height: 120px;
    border-radius: 50%;
    background-color: #eee;
    left:   -15px;
    top:    50px;
    position: absolute;
    display:flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
}