﻿/* Darkened Background */
.guide-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Highlight Menu Items */
.guide-highlight {
    background: #ffc7ae !important;
    color: #444 !important;
    padding: 8px 15px !important;
    border-radius: 20px !important;
    box-shadow: 0 0 20px rgba(255, 199, 174, 1) !important;
    z-index: 10002 !important; /* Higher than the header */
    position: relative !important;
    display: inline-block !important;
    transform: scale(1.1);
}

/* The Tutorial Card */
.guide-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 350px;
    width: 100%;
    z-index: 10000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.guide-ring-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

#guide-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin: 10px 0;
    color: #333;
}

.guide-card p {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.guide-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

#guide-step-count {
    font-size: 0.8rem;
    color: #999;
}

#guide-next-btn {
    background: #b39ddb; /* var(--accent) */
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    color: white;
    transition: transform 0.2s;
}

    #guide-next-btn:active {
        transform: scale(0.95);
    }


#help-me {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    border: none;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-size: 1.2rem;
    cursor: pointer;
}

#progress-container {
    width: 100%;
    background: #eee;
    height: 4px;
    border-radius: 2px;
    margin-bottom: 20px;
}

#guide-bar {
    width: 20%;
    height: 100%;
    background: #ffc7ae;
    transition: 0.3s;
}

#guide-text {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #666;
}