body {
    font-family: 'Segoe UI', sans-serif;
    background: #f9f9f9;
    margin: 0;
    padding: 20px;
}

.order-container {
    max-width: 900px;
    margin: 0 auto;
}

.order-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    padding: 20px;
    margin-bottom: 30px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.order-header h2 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.order-date {
    color: #777;
    font-size: 14px;
}

.order-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.order-item {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.order-item img {
    max-width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}

.order-item h4 {
    font-size: 14px;
    margin: 5px 0;
    color: #222;
}

.order-item p {
    font-size: 13px;
    margin: 2px 0;
    color: #555;
}

.no-orders {
    text-align: center;
    margin-top: 100px;
    font-size: 18px;
    color: #888;
}