/* Estilo do motor de tour (servido em _content/Vm.Pms.ContextualGuide/guide.css).
   Paleta neutra alinhada ao PMS (azuis 1C355E/4197CB) sem depender de MudBlazor. */

/* Overlay = click shield only (transparent); what darkens the screen is the box-shadow
   gigante do spotlight — assim o alvo fica "recortado" sem mágica de compositing. */
.pms-guide-overlay {
    position: fixed;
    inset: 0;
    background: transparent;
    z-index: 1400;
}

.pms-guide-highlight {
    position: fixed;
    border-radius: 8px;
    box-shadow: 0 0 0 4px rgba(65, 151, 203, 0.9), 0 0 0 9999px rgba(28, 53, 94, 0.45);
    background: transparent;
    z-index: 1401;
    pointer-events: none;
    transition: top 160ms ease, left 160ms ease, width 160ms ease, height 160ms ease;
}

.pms-guide-balloon {
    position: fixed;
    max-width: min(360px, calc(100vw - 16px));
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(28, 53, 94, 0.35);
    padding: 16px;
    z-index: 1402;
    font-family: 'Alexandria', sans-serif;
}

.pms-guide-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1C355E;
    margin-bottom: 6px;
}

.pms-guide-body {
    font-size: 0.875rem;
    line-height: 1.45;
    color: #1d1d1b;
    margin-bottom: 12px;
}

.pms-guide-footer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pms-guide-progress {
    font-size: 0.75rem;
    color: #758592;
    margin-right: auto;
}

.pms-guide-btn {
    border: 0;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.pms-guide-btn:disabled { opacity: 0.4; cursor: default; }
.pms-guide-skip { background: transparent; color: #758592; }
.pms-guide-back { background: #eef2f6; color: #1C355E; }
.pms-guide-next { background: #4197CB; color: #ffffff; }
.pms-guide-next:focus-visible { outline: 2px solid #1C355E; outline-offset: 2px; }

/* Replay button (GuideHelpButton) */
.pms-guide-help-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    /* light blue circle, border 1px thicker (it was 1px) */
    border: 2px solid #4197cb;
    background: #eaf4fb;
    cursor: pointer;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.pms-guide-help-btn__icon { display: block; }

.pms-guide-help-btn:hover { background: #d9ecf9; }
