/* Wrapper to arrange images on the left and chart on the right */
.wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Images take 1 part, Chart takes 2 parts */
    gap: 40px; /* Increase space between images and chart */
    max-width: 1400px; /* Increase overall size */
    margin: 0 auto;
    align-items: center;
    padding: 20px;
}

/* Image container (left side) */
.imgcontainer {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Increase spacing between images */
    width: 100%;
    max-width: 400px; /* Increase image container size */
}

/* Make images bigger */
.images img {
    width: 70%;
    height: auto;
}

/* Make sungjinwoo.jpg a bit larger */
.img2 img {
    width: 60%; /* Increase size */
    max-width: 150px; /* Increase max width */
}

/* Chart container (right side) */
.chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 800px; /* Increase chart size */
}

/* Increase canvas size */
canvas {
    width: 100%;
    height: 500px; /* Increase height */
}

/* Increase RSK power stats */
.row.text-center .col-md-3 {
    font-size: 1.5rem; /* Bigger text */
    padding: 15px;
}

/* Center the title properly */
.title {
    display: flex;
    justify-content: center; /* Centers the title horizontally */
    align-items: center;
    width: 100%; /* Ensures it takes full width */
    text-align: center;
    margin: 20px auto; /* Centers it vertically */
}

/* Ensure the title text is large and centered */
.title h1 {
    font-size: 3rem; /* Bigger title */
    color: #222;
    text-align: center;
    width: 100%;
}
