.lcw-tour-tooltip {
    position: absolute;
    background: #ffffff;
    color: #444;
    padding: 16px;
    border-radius: 6px;
    max-width: 280px;
    z-index: 10001;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.lcw-tour-tooltip button {
    margin-top: 10px;
    margin-right: 5px;
    padding: 5px 10px;
    border: none;
    background: #007bff;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.lcw-tour-tooltip button:hover {
    background: #0056b3;
}

.lcw-tour-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
}

.lcw-tour-highlight {
    position: relative;
    z-index: 10002;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.7);
    border-radius: 4px;
    background-color: white;
}

.lcw-tour-close {
    position: absolute;
    top: 8px;
    right: 10px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
}

.lcw-tour-close:hover {
    color: #ff6b6b;
}