body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 10px;
}

.card {
    background: white;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
}

h1 {
    margin-top: 0;
    margin-bottom: 5px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 16px;
}

th {
    background: #eaeaea;
    text-align: left;

    position: sticky;
    top: 0;
    z-index: 1;
}

th,
td {
    padding: 12px 10px;
    border-bottom: 1px solid #ddd;
}

tr:nth-child(even) {
    background: #fafafa;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.month {
    color: #666;
    font-size: 18px;
}

.summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.summary-box {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 15px;
}

.summary-title {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.summary-value {
    font-size: 28px;
    font-weight: bold;
}

.positive {
    color: green;
}

.negative {
    color: red;
}

.today {
    background: #fff8d7 !important;
}

@media (max-width: 600px) {

    body {
        padding: 5px;
    }

    .card {
        padding: 10px;
        border-radius: 0;
    }

    table {
        font-size: 15px;
    }

    td,
    th {
        padding: 10px 6px;
    }

    .summary {
        grid-template-columns: 1fr 1fr;
    }

    .summary-value {
        font-size: 22px;
    }

    .month {
        font-size: 16px;
    }
}
