.driver-overlay {
    z-index: 99999 !important;
}

.driver-popover {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    padding: 20px;
    max-width: 350px;
    z-index: 100000;
}

.driver-popover-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 6px;
    display: flex;
    gap: 8px;
}

.driver-popover-description {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}

.driver-popover-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    gap: 8px;
}

.driver-popover-progress-text {
    font-size: 12px;
    color: #888;
}

.driver-popover-prev-btn,
.driver-popover-next-btn {
    background: #1a365d !important;
    color: #fff !important;
    border: none !important;
    border-radius: 5px !important;
    padding: 6px 14px !important;
    font-size: 13px !important;
    cursor: pointer;
}

.driver-popover-prev-btn:hover,
.driver-popover-next-btn:hover {
    background: #2a4a7f;
}

.driver-popover-prev-btn:disabled,
.driver-popover-next-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.driver-popover-close-btn {
    background: transparent;
    border: none;
    font-size: 18px;
    color: #888;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
    transition: color 0.2s;
}

.driver-popover-close-btn:hover {
    color: #1a365d;
}

.driver-active-element {
    z-index: 100001 !important;
    position: relative;
}

.help-container {
    position: fixed;
    bottom: 30px;
    right: 40px;
    z-index: 9999;
}

#start-tour-btn {
    background: #1a365d !important;
    border: none;
    padding: 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    color: #fff;
}

.tour-need-help {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    background: #1a365d;
    color: #fff;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}