/* Contenedor maestro blindado */
#snps-acc-wrapper {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 2147483647 !important; /* Valor máximo absoluto en CSS */
    font-family: Arial, Helvetica, sans-serif;
    pointer-events: none; /* Para no bloquear clics en la web si el contenedor es muy grande */
}

/* Reactivamos los clics solo para los elementos del plugin */
#snps-acc-wrapper * {
    pointer-events: auto;
    box-sizing: border-box;
}

/* El círculo azul flotante */
.snps-trigger-circle {
    width: 60px;
    height: 60px;
    background-color: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}

.snps-trigger-circle:hover {
    transform: scale(1.05);
}

/* El panel blanco */
#snps-acc-panel {
    background: #ffffff;
    border-radius: 10px;
    width: 280px;
    padding: 15px;
    position: absolute;
    bottom: 75px;
    left: 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    display: block;
}

/* Cabecera del panel */
.snps-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
}

#snps-close-panel {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #666;
}

/* Lista y Botones */
.snps-tools-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

#snps-acc-wrapper .ut-btn {
    display: block;
    width: 100%;
    background: #007bff;
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 5px;
    text-align: left;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s ease;
    line-height: normal;
}

#snps-acc-wrapper .ut-btn:hover {
    background: #0056b3;
}

/* Utilidades CSS */
.snps-hidden {
    display: none !important;
}
.snps-d-none {
    display: none !important;
}