html, body {
    margin: 0;
    height: 100%;
    background: #f5f6f8;
}

.container {
    display: flex;
    height: 100vh;
}

.left {
    flex: 17;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.right {
    flex: 7;
    padding: 16px;
    background: #fff;
    border-left: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: auto;
}

.card {
    background: #fff;
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tableCard {
    flex: 1;
}

.row {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.title {
    font-weight: 600;
    margin-bottom: 8px;
}

.red {
    color: #e53935;
    font-weight: 600;
}

.statGrid {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    gap: 10px;
}

.statBox {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px;
}

.statValue {
    font-size: 18px;
    font-weight: 600;
    color: #e53935;
}

.small {
    font-size: 12px;
    color: #888;
}
