/* Home page interactive tour */
.tour-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bs-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.tour-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.tour-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    display: none;
}

.tour-tooltip {
    position: absolute;
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    max-width: 350px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1002;
    display: none;
}

.tour-tooltip-header {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--bs-primary);
}

.tour-tooltip-content {
    font-size: 14px;
    margin-bottom: 15px;
}

.tour-tooltip-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-tooltip-counter {
    font-size: 12px;
    color: #666;
}

.tour-tooltip-buttons {
    display: flex;
    gap: 10px;
}

.tour-button-prev,
.tour-button-next,
.tour-button-close {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tour-button-prev {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    color: #333;
}

.tour-button-next {
    background-color: var(--bs-primary);
    border: 1px solid var(--bs-primary);
    color: white;
}

.tour-button-close {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    color: #333;
}

.tour-highlight {
    position: relative;
    z-index: 1003;
    box-shadow: 0 0 0 4px var(--bs-primary), 0 0 0 10000px rgba(0, 0, 0, 0.7);
    transition: box-shadow 0.3s ease;
}