// order-display.css
.order-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.order-section {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.order-header h1 {
    color: #0051CD;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
}

.detail-row:last-child {
    border-bottom: none;
}

.icon {
    width: 24px;
    margin-right: 12px;
    text-align: center;
}

.label {
    flex: 1;
    color: #333;
  margin-left: 12px;
}

.value {
    color: #666;
    font-weight: 500;
}

.customer-review {
    margin-top: 20px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 4px;
}

.customer-review p {
    font-style: italic;
    color: #666;
    margin: 0;
}

.order-button {
    display: block;
    width: 100%;
    padding: 16px;
    margin-top: 20px;
    background: #0051CD;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.back {
  background: #ffffff !important;
    color: #1946A0 !important;
    border: 1px solid;
}

.order-button:hover {
    background: #0042a8;
}
#customerReview {
  font-style: italic;
}

@media (max-width: 480px) {
    .order-container {
        padding: 10px;
    }
    
    .value {
        margin-top: 4px;
    }
}