/* Base resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #eef1f5;
    color: #333;
    padding: 2rem 4rem;
}

h2 {
    margin-bottom: 1rem;
    color: #222;
}

#filterStatus,
button {
    padding: 0.6rem 1rem;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-right: 0.5rem;
}

#filterStatus {
    background: #fff;
    cursor: pointer;
}

button {
    background: #0070f3;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background: #005bb5;
}

#orders {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.order-card {
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.order-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.order-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #0070f3;
}

.order-card p {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}