/* Make brand-logo responsive and allow wrapping */
.brand-logo {
    font-size: 1.6rem;       /* smaller size than Materialize default */
    white-space: normal;     /* allow text to wrap on small screens */
    line-height: 1.2;        /* tighten line height if wrapped */
}
/* Center logo text on small screens */
@media (max-width: 600px) {
    .brand-logo {
        text-align: center;
        display: block;
        width: 100%;
    }
}

body {
    padding-top: 64px;
    background: #f5f5f5;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.category {
    margin-bottom: 20px;
}

.score {
    font-weight: bold;
    margin-top: 10px;
}

#chart-container {
    padding: 15px;
}
