.ace_dd {
    display: none;
    border: 1px solid #ffd6e7; /* Rosa muy claro */
    position: absolute;
    background: #ffffff;
    z-index: 1000;
    border-radius: 12px; /* Bordes redondeados como tus cards */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Sombra suave */
    overflow: hidden;
    min-width: 180px;
}

/* OPCIONES DEL MENÚ (Google, Outlook, etc) */
a.ace_opt {
    padding: 12px 15px;
    display: block;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
    color: #333; /* Texto oscuro para lectura fácil */
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* EFECTO AL PASAR EL MOUSE */
a.ace_opt:hover {
    /* Usamos tu degradado rosa-naranja de CLAN */
    background: linear-gradient(90deg, #ff2d8d, #ff7a00); 
    color: #ffffff !important; /* Texto blanco al seleccionar */
    text-decoration: none;
}

/* OPCIONAL: Si el plugin genera iconos, dales color */
a.ace_opt i {
    margin-right: 8px;
    color: #ff2d8d;
}

a.ace_opt:hover i {
    color: #ffffff;
}
