/* Add to existing tour-navigation-overlay.css */

.tour-nav-buttons-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-panel-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    width: 44px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s;
}

.tour-panel-btn:active {
    background: rgba(255, 255, 255, 0.2);
}

.tour-panel-btn svg {
    width: 20px;
    height: 20px;
}

.tour-nav-pagination {
    display: flex;
    gap: 4px;
}

.tour-nav-pagination .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.tour-nav-pagination .dot.active {
    background: #ffffff;
}
