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

body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f9;
    padding: 20px;
}

h2 {
    margin-bottom: 10px;
}

.total-orders-box, .total-revenue-box, .employee-payments-box {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.order-item, .revenue-item, .employee-item {
    text-align: center;
    flex: 1;
    margin: 0 10px;
}

.order-item h3, .revenue-item h3, .employee-item h3 {
    color: #555;
    margin-bottom: 5px;
}

.order-item p, .revenue-item p, .employee-item p {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

p span {
    font-size: 14px;
    font-weight: normal;
    color: #999;
}
