.delete-button:hover{
    cursor: pointer;
}

.delete-button{
    margin: 0 5px 0 5px ;
}

.move-icon{
    margin: 0 10px 0  0;
}

.edit-button:hover{
    cursor: pointer;
}

.btn-conf {
    background-color: #192A72;
    color: white;
}

.btn-conf:hover{
    background-color: #131d4e;
    color: white;
}

.carousel-item .row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item .col {
    flex: 1;
    max-width: 33.33%; /* Ajusta este valor si es necesario */
}

.imgcm {
    width: 100%;
    height: 100%;
}

.submenu {
    display: block; /* Usamos block para permitir la transición */
    background-color: #f9f9f942;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0;
}

.submenu.show {
    max-height: 500px; /* Ajusta según el contenido */
    padding: 10px 0;
}

.submenu a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.submenu a:hover {
    background-color: #f1f1f1;
}
