.hidden-bubble {
    display: none !important;
}
.container {
    display: flex; /* Arrange columns side by side */
    flex-direction: row; /* Columns in a row */
    justify-content: flex-start; /* Align columns to the left */
    align-items: flex-start; /* Align columns to the top */
    height: 100vh; /* Set container height to full viewport height */
    overflow-y: auto; /* Allow vertical scrolling if needed */
    overflow-x: auto; /* Allow horizontal scrolling if needed */
    padding: 20px; /* Add some padding around the container */
    background-color: #f0f0f0; /* Light background color for contrast */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    vertical-align: auto;
}

.column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 40px; /* Space between columns */
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Make B column bubbles bigger by default */
.container .column:nth-child(2) .section {
  width: 520px; /* Make B bubbles even longer horizontally */
  height: 150px; /* Match A column height (assumed 150px, adjust if needed) */
  font-size: 1.5em;
  border-radius: 48px; /* More rounded edges */
}

/* Make B column bubbles fill the viewport and stay fixed */
.column.b-fixed {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 50vw;
    background: transparent;
    z-index: 100;
    justify-content: center;
    align-items: center;
}
.column.b-fixed .section {
    width: 90%;
    height: 25vh;
    border-radius: 2em;
    margin: 2vh auto;
    position: static;
    left: 0;
    display: flex;
}


.section{
    width: 150px; /* Set the width of the circle */
    height: 150px; /* Set the height of the circle (should match width for perfect circle) */
/* Expanded section style for scroll event */
/* Expanded section style for scroll event */
/* Expanded section style for scroll event */
/* Expanded section style for scroll event */
.expanded-section {
    width: calc(100vw - 230px) !important; /* 150px bubble + 40px margin + 20px container padding + 20px gap */
    height: 150px;
    border-radius: 0 !important;
    transition: width 0.3s, border-radius 0.3s;
    z-index: 10;
    position: relative;
    left: 0;
    display: flex !important;
}

.bubble-extra-text {
    display: none;
    margin-left: 30px;
    font-size: 1.1em;
    color: #222;
    background: #fffbe6;
    border-radius: 8px;
    padding: 8px 16px;
    box-shadow: 1px 1px 6px rgba(0,0,0,0.08);
}
.expanded-section .bubble-extra-text {
    display: inline-block;
}
    background-color: #00bfb6; /* Background color of the bubble */
    border-radius: 50%; /* Makes the element a circle */
    display: flex; /* Allow text to be centered vertically and horizontally */
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    text-align: center; /* Center text horizontally if it wraps */
    color: #fff; /* Text color */
    font-family: Arial, sans-serif; /* Font style */
    font-size: 1.2em; /* Font size */
    padding: 10px; /* Add some padding around the text */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Optional: add a subtle shadow */
    margin: 10px 0; /* Add vertical space between bubbles, no left margin */
}
