/* Job Guided Tour Styles */
.tour-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Lighter, consistent overlay */
    z-index: 1040;
}

.tour-highlight {
    position: relative;
    z-index: 1041 !important;
    box-shadow: 0 0 0 4px #007bff, 0 0 20px rgba(0, 123, 255, 0.5) !important;
    border-radius: 4px !important;
    background-color: transparent !important; /* Keep original button colors */
}

.tour-step-content {
    padding: 1rem 0;
}

.tour-step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.modal-lg {
    z-index: 1042;
}

/* Smart positioning classes */
.tour-modal-top {
    margin-top: 2rem !important;
}

.tour-modal-bottom {
    margin-top: auto !important;
    margin-bottom: 2rem !important;
}

.tour-modal-left {
    margin-left: 2rem !important;
    margin-right: auto !important;
}

.tour-modal-right {
    margin-left: auto !important;
    margin-right: 2rem !important;
}

.tour-modal-center-left {
    margin-top: 50vh !important;
    transform: translateY(-50%) !important;
    margin-left: 2rem !important;
    margin-right: auto !important;
}

.tour-modal-center-right {
    margin-top: 50vh !important;
    transform: translateY(-50%) !important;
    margin-left: auto !important;
    margin-right: 2rem !important;
}

/* Job number color legend styles */
.job-color-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.job-color-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-color-sample {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 1px solid #ccc;
}