@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap'); /* Import Ubuntu font */

.order-status {
    display: flex;
    justify-content: space-around; /* Spread the items evenly */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Ubuntu', sans-serif; /* Apply Ubuntu font */
}

.status-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align the content horizontally */
    justify-content: center; /* Center align the content vertically */
    padding: 5px;
    text-align: center;
}

.status-item i {
    font-size: 24px;
    margin-bottom: 5px;
    color: #000000; /* Change icon color to your preference */
}

.status-item strong {
    font-weight: bold; /* Make the date text bold */
    font-size: 16px; /* Size of date text */
}

.status-item span {
    font-weight: normal; /* Normal weight for "Order Placed", "Order Processed", etc. */
    font-size: 16px;
    font-family: 'Ubuntu', sans-serif; /* Apply Ubuntu font */
}