.blue-box-container {
    border: 3px solid rgba(2,191,231,.5);
    padding: 20px;
    width: 75%; /* Adjust the width as needed */
    margin: auto; /* Centers the box */
}


.blue-box-container {
    word-break: break-all;
}

.row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.column {
    flex: 1;
    padding: 5px;
}

/* Additional styling to make it look better */
.column img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease; /* For smooth zooming effect */
}

.column img:hover {
    transform: scale(1.1); /* Zooms the image by 10% on hover */
}

.column strong {
    color: blue;
}

.info-section hr {
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
    border: 0;
    border-top: 1px solid lightgrey;
    width: 100%; /* Extends the line across the container */

}

.info-section {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.8;
}

.reference-container {
    text-align: center; /* Centers the text within the container */
    padding: 10px; /* Optional: Adds padding around the text for better spacing */
}



/* Pubchem css */

.p-2 {
    padding: 0.5rem;
}

.pc-gray-border-t {
    --tw-border-opacity: 1;
    border-color: rgb(209, 213, 219/var(--tw-border-opacity));
}






