﻿
/******************************************/
/* BASE */
.introjs-tooltip {
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.4;
}

/* DARK THEME */
html[data-bs-theme="dark"] .introjs-tooltip {
    background: rgba(30,30,30,0.75);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
}

/* LIGHT THEME */
html[data-bs-theme="light"] .introjs-tooltip {
    background: rgba(255, 255, 255, 0.6);
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
html[data-bs-theme="light"] .introjs-tooltip {
    border-top: 1px solid rgba(255,255,255,0.6);
}
/* BUTTONS */
.introjs-button {
    border-radius: 8px;
    font-size: 13px;
}

html[data-bs-theme="dark"] .introjs-button {
    background: #2b2b2b;
    color: #fff;
    border: 1px solid #444;
}

html[data-bs-theme="light"] .introjs-button {
    background: #f8f9fa;
    color: #000;
    border: 1px solid #ddd;
}

/* OVERLAY */
html[data-bs-theme="dark"] .introjs-overlay {
    background: rgba(0,0,0,0.75) !important;
}

html[data-bs-theme="light"] .introjs-overlay {
    background: rgba(0,0,0,0.35) !important;
}

.introjs-tooltip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.introjs-tooltip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.introjs-skipbutton {
    position: static !important;
    margin-left: auto;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center; /* vertical center */
    justify-content: center; /* horizontal center */

    font-size: 12px; /* 9px is too small → visually off-center */
    line-height: 1; /* prevents weird vertical offset */

    padding: 0;
    border-radius: 6px;
    opacity: 0.75;
}
.introjs-skipbutton:focus, .introjs-skipbutton:hover {
    color: inherit !important;
    outline: 0;
    text-decoration: none;
}

.introjs-skipbutton:hover {
    opacity: 1;
    text-decoration: none;
}
.introjs-skipbutton {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    /*color: inherit;*/
}
.intro-large {
    max-width: 400px; /* default is ~250px */
    width: 400px;
    font-size: 15px;
    padding: 16px;
}
.intro-wide {
    max-width: 500px;
}
