#enym-tutorial-custom-trigger {
    cursor: pointer;
    position: fixed;
    bottom: 25px;
    right: 80px;
    min-height: 35px;
    min-width: 35px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--wpex-text-4, #333);
    background-color: var(--wpex-surface-2, #eee);
}

#enym-tutorial-custom-trigger:hover {
    color: var(--wpex-on-accent, #fff);
    background-color: var(--wpex-accent, #0073aa);
}

#enym-tutorial-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 99999;
    display: none;
}

#enym-tutorial-popup {
    position: absolute;
    /* Changed via JS to fixed if centering */
    width: 350px;
    max-width: 90vw;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    z-index: 100001;
    /* Above overlay and highlighted element (100000) */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    display: none;
}

#enym-tutorial-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #888;
}

#enym-tutorial-close:hover {
    color: #333;
}

#enym-tutorial-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

#enym-step-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}

#enym-step-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}

#enym-tutorial-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.enym-nav-btn {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s;
}

.enym-nav-btn:hover {
    background: #005177;
}

.enym-nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#enym-step-indicator {
    font-size: 12px;
    color: #999;
}

#enym-tutorial-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    /* transition: left 0.2s; */
}

.enym-arrow-top {
    top: -10px;
    border-bottom: 10px solid #fff;
}

.enym-arrow-bottom {
    bottom: -10px;
    border-top: 10px solid #fff;
}