/* Contenedor del menú */
.menu, .btn-succes {
    background: linear-gradient(
        180deg,
        #064e3b 0%,
        #065f46 40%,
        #047857 100%
    );
    padding: 12px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

/* Lista */
.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

/* Elementos */
.menu li {
    margin: 0;
}

/* Links */
.menu a {
    display: block;
    padding: 10px 18px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.25s ease;
    background: rgba(255, 255, 255, 0.08);
}


.menu a:hover {
    background: #ffffff;
    color: #064e3b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}


.menu a.active {
    background: #ffffff;
    color: #064e3b;
}


h2 {
    margin: 20px 0 10px;
    font-weight: 700;
    color: #064e3b;
}

@media (max-width: 768px) {
    .menu ul {
        flex-direction: column;
    }

    .menu a {
        width: 90%;
        text-align: center;
    }
}

.dv-card__topbar{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:16px;
    flex-wrap:wrap;
}

.dv-card__info{
    flex:1 1 auto;
    min-width:220px;
}

.dv-card__actions{
    margin-left:auto;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    flex:0 0 auto;
}

.dv-btn-edit{
    white-space:nowrap;
}

@media (max-width: 768px){
    .dv-card__topbar{
        flex-direction:column;
        align-items:stretch;
    }

    .dv-card__actions{
        margin-left:0;
        width:100%;
        justify-content:flex-end;
    }

    .dv-btn-edit{
        width:100%;
        max-width:220px;
    }
}

