/* assets/style.css */

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;   /* 横中央揃え */
}

.graph-and-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 1200px;  /* 中央寄せされる幅上限 */
}

@media screen and (min-width: 768px) {
    .graph-and-info {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }
    .graph-and-info > div {
        flex: 1;
    }
    .info-panel {
        max-width: 400px;
        padding-left: 10px;
    }
}
