body {
    font-family: Arial, sans-serif;
    background: #f4f6f9;
    margin: 0;
    padding: 20px;
}

.container {
    background: #fff;
    padding: 20px;
    max-width: 900px;
    margin: auto;
    border-radius: 8px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
}

h1 {
    color: #1a73e8; /* Change to your brand color */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 10px;
    text-align: left;
}

.total {
    text-align: right;
    font-weight: bold;
}

.btn {
    padding: 10px 15px;
    background: #1a73e8;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.footer {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #666;
}

@media print {
    .no-print { display: none; }
}
