body {
    font-family: Roboto, Arial;
    margin: 20px;
    background: #f6f8fa;
    color: #000000
}

.row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 10px;
}

.card {
    background: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    flex: 3;
}

.card>div {
    max-height: 30em;
    overflow-y: auto;
}

.large {
    flex: 5;
}

h1 {
    margin-top: 0;
    font-size: 2em;
    /* color: #3498db; */
}

h3 {
    margin-top: 0;
    font-size: 1em;
    color: #6c757d;
}

.count {
    font-size: 28px;
    font-weight: 700;
    color: #28a745;
}

.summary {
    font-size: 1.2em;
    line-height: 1.4em;
    font-weight: 400;
    color: #212529;
}


.muted {
    color: #6c757d;
}

.examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.example {
    padding: 10px;
    border-radius: 6px;
    background: #f9f9f9;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 700;
    margin: 2px;
}

.items {
    color: #343434;
    border: 2px #343434 solid;
    background: #e3e3e3;
    font-size: .9em;
    font-weight: 500;
    cursor: pointer;
}

.badge_q {
    display: inline-block;
    padding: 1px 3px;
    border-radius: 8px;
    font-weight: 700;
    margin: 1px;
}

.items_q {
    color: #343434;
    border: 1px #343434 solid;
    background: #e3e3e3;
    font-size: .7em;
    font-weight: 400;
    cursor: pointer;
}

.pos {
    color: #28a745;
    background: #d4edda;
}

.neg {
    color: #dc3545;
    background: #f8d7da;
}

.neu {
    color: #6c757d;
    background: #e9ecef;
}

.score {
    font-size: 24px;
    font-weight: 200;
    color: #212529;
}

canvas {
    max-width: 100%;
    max-height: 300px;
}

.category-card {
    margin-top: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    /* color: #3498db; */
}

.category-title {
    font-weight: 400;
    font-size: 1.5em;
}

#pie,
#categoryChart {
    max-width: 100%;
    max-height: 300px;
}

#bar {
    max-width: 100%;
    max-height: 240px;
}