img {
    max-width: 100%;
    /* Ensure images don't exceed their container width */
    cursor: grab;
}

.plot_container {
    width: 80%;
    margin: auto;
    text-align: center;
}

.plot_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* Center the rows horizontally */
    margin: -10px;
}

.plot_column {
    flex: 1 1 calc(50% - 20px);
    /* Each column takes up 50% of the width minus margin */
    margin: 10px;
    box-sizing: border-box;
    text-align: center;
    /* Center the content within each column */
}

.plot_column img {
    width: 100%;
    /* Ensure images fit within their columns */
    height: auto;
    display: block;
}

.plot_column h3 {
    text-align: center;
    margin: 10px 0;
}

@media (max-width: 768px) {
    .plot_column {
        flex: 1 1 100%;
        /* Each column takes up 100% width on smaller screens */
    }
}

#FullImageView {
    display: none;
    position: Fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    flex-direction: column;
    justify-content: center;
}

#FullImage {
    padding: 24px;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

#CloseButton {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2.5rem;
    /* background-color: rgba(0, 0, 0, 0.5); */
    color: white;
    /* border: none; */
    padding: 10px;
}
