.introjs-tooltip {
    background-color: #3f51b5;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.introjs-tooltiptext {
    font-family: 'Fredoka', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: black;
}

.introjs-button {
    background-color: #ffffff;
    border: none;
    color: #3f51b5;
    text-shadow: none;
    border-radius: 4px;
    font-family: 'Fredoka', sans-serif;
    transition: all 0.3s ease;
    padding: 6px 12px;
    margin: 2px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
}

.introjs-button:hover {
    background-color: #e8eaf6;
    color: #3f51b5;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.introjs-skipbutton {
    color: rgba(255,255,255,0.7);
}

.introjs-tooltip-header>a{
    font-size: 15px;
}

.introjs-skipbutton:hover {
    color: white;
}

.introjs-progress {
    background-color: rgba(255,255,255,0.2);
}

.introjs-progressbar {
    background-color: white;
}

.introjs-arrow.top, 
.introjs-arrow.top-middle, 
.introjs-arrow.top-right {
    border-bottom-color: #3f51b5;
}

.introjs-arrow.bottom, 
.introjs-arrow.bottom-middle, 
.introjs-arrow.bottom-right {
    border-top-color: #3f51b5;
}

.introjs-arrow.left {
    border-right-color: #3f51b5;
}

.introjs-arrow.right {
    border-left-color: #3f51b5;
}

/* Style pour le bouton de redémarrage du tutoriel */
.tutorial-restart-button {
    background-color: #3f51b5;
    color: white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.tutorial-restart-button:hover {
    background-color: #303f9f;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.highlight {
    border: 2px solid #3f51b5;
    border-radius: 4px;
    box-sizing: border-box;
    display: inline-block;
    background-color: rgba(63, 81, 181, 0.1);
    position: relative;
    z-index: 1;
}

.introjs-tooltipbuttons>a {
    background-color: white;
    color: #3f51b5;
    border: none;
}

.introjs-tooltipbuttons>a:hover {
    background-color: #e8eaf6;
    color: #3f51b5;
}

.introjs-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.introjs-disabled:hover {
    transform: none;
    box-shadow: none;
    background-color: #ffffff;
} 