﻿.gpch-domo-control {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.domo-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6), rgba(0,0,0,0.2));
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    color: white;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    opacity: 0.85;
}

    .domo-btn:hover {
        opacity: 1;
        transform: scale(1.05);
    }

    .domo-btn.activo {
        background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), rgba(0,0,0,0.6));
        box-shadow: inset 0 2px 6px rgba(0,0,0,0.5);
        transform: scale(0.95);
    }
