/**
 * Welcome Tour Styling for Motor Carrier Safety & Compliance Consultants LLC
 */

/* Tour Overlay */
.fmcsa-tour-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    backdrop-filter: blur(2px);
}

.fmcsa-tour-overlay-active {
    display: block;
}

/* Highlighted Element */
.fmcsa-tour-highlight {
    position: relative;
    z-index: 10000;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
    border-radius: 4px;
    animation: fmcsa-tour-pulse 2s infinite;
}

@keyframes fmcsa-tour-pulse {
    0%, 100% {
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.25);
    }
}

/* Welcome Box */
.fmcsa-tour-welcome-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    max-width: 420px;
    width: 90%;
    animation: fmcsa-tour-slide-in 0.3s ease-out;
}

@keyframes fmcsa-tour-slide-in {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.fmcsa-tour-welcome-content {
    padding: 32px 28px;
}

.fmcsa-tour-welcome-content h2 {
    margin: 0 0 12px 0;
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
}

.fmcsa-tour-welcome-content p {
    margin: 0 0 24px 0;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.fmcsa-tour-welcome-actions {
    display: flex;
    gap: 12px;
}

/* Tooltip */
.fmcsa-tour-tooltip {
    position: fixed;
    background: white;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    max-width: 360px;
    min-width: 280px;
    animation: fmcsa-tour-fade-in 0.2s ease-out;
}

@keyframes fmcsa-tour-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fmcsa-tour-tooltip-content {
    padding: 20px 24px;
}

.fmcsa-tour-step-counter {
    font-size: 12px;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.fmcsa-tour-tooltip h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.fmcsa-tour-tooltip p {
    margin: 0 0 16px 0;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

/* Tooltip Arrow */
.fmcsa-tour-tooltip::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    z-index: -1;
}

.fmcsa-tour-position-top::before {
    bottom: -6px;
    left: 20px;
}

.fmcsa-tour-position-bottom::before {
    top: -6px;
    left: 20px;
}

.fmcsa-tour-position-left::before {
    right: -6px;
    top: 20px;
}

.fmcsa-tour-position-right::before {
    left: -6px;
    top: 20px;
}

/* Tour Actions */
.fmcsa-tour-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Buttons */
.fmcsa-tour-button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    min-width: 80px;
}

.fmcsa-tour-button-primary {
    background: #3b82f6;
    color: white;
}

.fmcsa-tour-button-primary:hover {
    background: #2563eb;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.fmcsa-tour-button-primary:active {
    transform: scale(0.98);
}

.fmcsa-tour-button-secondary {
    background: #f3f4f6;
    color: #374151;
}

.fmcsa-tour-button-secondary:hover {
    background: #e5e7eb;
}

.fmcsa-tour-button-secondary:active {
    transform: scale(0.98);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .fmcsa-tour-welcome-box {
        max-width: 90%;
    }

    .fmcsa-tour-tooltip {
        max-width: 90%;
        min-width: auto;
    }

    .fmcsa-tour-welcome-content {
        padding: 24px 20px;
    }

    .fmcsa-tour-tooltip-content {
        padding: 16px 20px;
    }

    .fmcsa-tour-button {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 70px;
    }
}

/* Accessibility */
.fmcsa-tour-button:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.fmcsa-tour-tooltip:focus-within {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Ensure tour appears above other elements */
.site-shell > :last-child {
    z-index: auto;
}
