/** Estilização do Balão e Modal (G1-like) **/

/* Container principal para posicionamento */
#gasp-summary-container {
    margin: 20px 0;
    position: relative;
    font-family: Arial, sans-serif;
}

/* Estilo do Balão Clicável */
.gasp-summary-bubble {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #f1f1f1; /* Fundo claro */
    border: 1px solid #ccc;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    transition: background-color 0.3s;
    outline: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.gasp-summary-bubble:hover {
    background-color: #e5e5e5;
}

.gasp-icon {
    font-size: 1.2em;
    margin-right: 8px;
}

/* Estilo do Modal de Resumo */
.gasp-summary-modal {
    background-color: #fff;
    border: 2px solid #0056b3; /* Cor primária */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    position: absolute;
    z-index: 1000; /* Garante que fique acima de outros elementos */
    width: 100%;
    max-width: 600px;
    top: 5px; /* Posição abaixo do balão (ou ajuste se for modal fixo) */
    left: 0;
}

.gasp-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.gasp-modal-header h2 {
    margin: 0;
    font-size: 1.2em;
    color: #0056b3;
}

#gasp-close-modal {
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

/* Estilo da Lista de Tópicos */
.gasp-modal-body ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
}

.gasp-modal-body li {
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 0.95em;
}