/* ============================================================================
   tour.css - Guided walkthrough (demo mode only; see ui-tour.js)
   ============================================================================ */

.tour-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: transparent;
}

/* Spotlight: the box-shadow dims everything except the highlighted region. */
.tour-spotlight {
    position: fixed;
    z-index: 9001;
    border: 2px solid #4a6da7;
    box-shadow: 0 0 0 9999px rgba(17, 24, 39, 0.55);
    pointer-events: none;
    transition: top 0.15s ease, left 0.15s ease, width 0.15s ease, height 0.15s ease;
}

.tour-card {
    position: fixed;
    z-index: 9002;
    width: 400px;
    max-width: calc(100vw - 24px);
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-top: 3px solid #4a6da7;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.25);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.tour-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px 0 12px;
}

.tour-card-title {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
}

.tour-close {
    border: none;
    background: none;
    font-size: 18px;
    line-height: 1;
    color: #6b7280;
    cursor: pointer;
    padding: 0 2px;
}
.tour-close:hover { color: #1f2937; }

.tour-card-body {
    margin: 8px 0 0 0;
    padding: 0 12px;
    font-size: 11.5px;
    line-height: 1.55;
    color: #374151;
}

.tour-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    margin-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.tour-count {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
}

.tour-btns { display: flex; gap: 6px; }

.tour-btn {
    font-size: 11px;
    padding: 4px 12px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #374151;
    cursor: pointer;
}
.tour-btn:hover { background: #f3f4f6; }

.tour-btn-primary {
    background: #4a6da7;
    border-color: #4a6da7;
    color: #ffffff;
}
.tour-btn-primary:hover { background: #3b5998; }
