/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.header h1 {
    margin: 0;
}

.datetime {
    font-size: 14px;
    color: #666;
}

.search-section {
    margin-bottom: 20px;
    text-align: center;
}

.search-section label {
    margin-right: 10px;
}

.search-section input {
    padding: 5px;
    font-size: 16px;
    width: 200px;
    margin-right: 10px;
}

.search-section button {
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
}

#orderMessage {
    text-align: center;
    font-size: 16px;
    color: #d9534f;
}

/* Details Box Styles */
.details-box {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    margin-bottom: 10px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
}

.detail-title {
    font-weight: bold;
}

.detail-value {
    margin-left: 5px;
}

/* Order Status Styles */
.order-status {
    margin-bottom: 20px;
}

.status-flow {
    display: flex;
    align-items: center;
}

.status-box {
    width: 100px;
    text-align: center;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 0 5px;
}

.status-box.dark-green {
    background-color: darkgreen;
    color: white;
}

.status-box.light-green {
    background-color: lightgreen;
}

.status-box.grey {
    background-color: grey;
    color: white;
}

.arrow {
    font-size: 24px;
}

.green-arrow {
    color: green;
}

.blink {
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}
