/* Enhanced Order Status Bar */
.enhanced-osb-order-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.enhanced-osb-progress-bar {
    position: relative;
    width: 100%;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin: 10px 0;
}

.enhanced-osb-progress {
    height: 100%;
    background-color: #4CAF50;
    transition: width 0.5s ease-in-out;
}

.enhanced-osb-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    color: #bbb;
    transition: color 0.3s ease-in-out;
}

.enhanced-osb-complete {
    color: #4CAF50;
}

.enhanced-osb-failed {
    color: #e74c3c;
}

.enhanced-osb-tooltip {
    position: absolute;
    bottom: -25px;
    background-color: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.enhanced-osb-step:hover .enhanced-osb-tooltip {
    opacity: 1;
    visibility: visible;
}
