/* admin-styles.css */

/* Remover efeitos de focus/visited nos botões */
.wpun-actions button:focus,
.wpun-actions button:visited,
.wpun-actions button:active {
    outline: none;
    box-shadow: none;
}

/* Estilos para o botão "Marcar como Lida" */
.wpun-mark-read {
    background-color: #e6f7ff;
    color: #0073aa;
    border: 1px solid transparent;
}

.wpun-mark-read:hover {
    background-color: #cceeff; /* Mais escuro no hover */
    color: #005177;
}

/* Estilos para o botão "Excluir" */
.wpun-delete {
    background-color: #ffe6f1;
    color: #d6336c;
    border: 1px solid transparent;
}

.wpun-delete:hover {
    background-color: #ffccd5; /* Mais escuro no hover */
    color: #a7264d;
}

/* Estilos para o formulário no frontend */
#wpun_roles_selection, #wpun_users_selection, #wpun_email_option {
    margin-top: 20px;
}

#wpun_user_list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

#wpun_user_list li {
    margin-bottom: 5px;
}

.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
    background: #fff;
    border: 1px solid #ccc;
    padding-left: 5px;
    font-size: 14px;
    color: #333;
}

.ui-state-focus {
    background: #0073aa;
    color: #fff;
}
