.participant-name,
.participant-rgcnh {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    box-sizing: border-box;
}

span.editable::after {
    font-family: Dashicons;
    content: "\f464";
}

.custom-alert-modal {
    display: none;
    /* Esconde o modal por padrão */
    position: fixed;
    z-index: 1000;
    /* Fica acima de outros elementos */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* Habilita scroll se necessário */
    background-color: rgba(0, 0, 0, 0.5);
    /* Fundo escuro semi-transparente */
}

.custom-alert-content {
    background-color: #fff;
    margin: 15% auto;
    /* 15% do topo e centro horizontal */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    /* Largura máxima */
    text-align: center;
}

.close-alert-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-alert-modal:hover,
.close-alert-modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}