/* Color de la burbuja */
.introjs-tooltip {
    background: #262a2e !important;
    color: #fff;
    text-align: center !important;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.2) !important;
    border: none !important;
}
.introjs-tooltip ul,
.introjs-tooltip ol {
    margin-top: 3px !important;
    padding: 8px !important;
    margin: 8px 0 !important;
}
.introjs-tooltip li {
    margin-bottom: 6px !important;
    line-height: 1.4 !important;
}

/* Botones */
.introjs-button {
    background: #72a11a !important;
    text-shadow: none !important;
    color: #fff !important;
    font-weight: 300 !important;   
    border-color: #72a11a !important;
    border-radius: 6px !important;
    padding: 6px 12px !important;
    letter-spacing: 0.2px !important; 
}
.introjs-button:hover {
    background-color: #89c323 !important;
    border-color: #89c323 !important;
}

.introjs-tooltip, 
.introjs-button {
    transition: all 0.25s ease-in-out !important;
}

/* Sombra del highlight */
.introjs-helperLayer {
    border-radius: 10px;
    box-shadow: 0 0 0 4px rgba(23, 233, 33, 0.623);
}

/* Opacidad */
.introjs-overlay {
    opacity: 0.8;
}

/* Resaltado de elementos */
.tour-destacado {
    border: 2px solid #72a11a;
    border-radius: 8px;
}

.my-tour-step h3 {
    margin: 0 0 6px 0;
    font-size: 1.1rem;
    color: #228be6;
}

.my-tour-step p {
    margin: 0;
}

.introjs-tooltip-arrow.bottom { border-top-color: #262a2e !important; }
.introjs-tooltip-arrow.top { border-bottom-color: #262a2e !important; }
.introjs-tooltip-arrow.left { border-right-color: #262a2e !important; }
.introjs-tooltip-arrow.right { border-left-color: #262a2e !important; }

/* Estilo Botón "Tour"*/
#btn-tour {
    position: fixed;
    bottom: 90px; 
    right: 30px;  
    z-index: 1050; 
    border-radius: 30%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#btn-tour:hover {
    background-color: #dfdfdf65;
}
#btn-tour i {
  font-size: 1.8rem;
  color: var(--icon-color);
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Estilo Botón para el tour dash individual */
#btn-individual-tour {
    position: fixed;
    bottom: 90px; 
    right: 30px;  
    z-index: 1050; 
    border-radius: 30%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#btn-individual-tour:hover {
    background-color: #dfdfdf65;
}
#btn-individual-tour i {
  font-size: 1.8rem;
  color: var(--icon-color);
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Estilo Botón para el tour dash grupal */
#btn-grupal-tour {
    position: fixed;
    bottom: 90px; 
    right: 30px;  
    z-index: 1050; 
    border-radius: 30%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#btn-grupal-tour:hover {
    background-color: #dfdfdf65;
}
#btn-grupal-tour i {
  font-size: 1.8rem;
  color: var(--icon-color);
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Estilo Botón para tour de la configuración */
#btn-config-tour {
    margin: 1rem auto;
    background: white;
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;              
    cursor: pointer;
    transition: background 0.3s ease;
}
#btn-config-tour i {
    font-size: 2.2rem;
    line-height: 0;        
}
#btn-config-tour:hover {
    background: var(--hover-bg);
    color: white;
}

