.status-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-top: 5px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.status-button {
    background: #a94442;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
    max-width: 250px;
    text-align: center;
}

.status-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: gray;
    flex: 1;
    transition: color 0.3s;
}

.step-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid gray;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    font-size: 14px;
    transition: background 0.3s, border 0.3s;
}

.step-line {
    position: absolute;
    height: 2px;
    background: gray;
    width: 100%;
    top: 10px;
    left: 0;
    z-index: -1;
    transition: background 0.3s;
}

.step.active {
    color: black;
    font-weight: bold;
}

.step.active .step-circle {
    background: green;
    border-color: green;
    color: white;
}

.step.completed {
    color: #888;
}

.step.completed .step-circle {
    background: lightgray;
    border-color: lightgray;
    color: black;
}

.step.completed .step-circle::after {
    content: "✔";
}

/* Responsive Design */
@media (max-width: 600px) {
    .status-steps {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .step-line {
        display: none;
    }
}

.order-details-head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.order-details-head-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.order-details-edit-btn i {
    font-size: 14px;
}

@media (max-width: 767px) {
    .order-details-head-row {
        flex-direction: column;
        align-items: flex-start;
    }
}