/* ===== Global Page Style ===== */
body {
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    margin: 0;
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: #222;
}

h1 {
    color: #1d4ed8; /* Indigo 700 */
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 20px;
}

/* ===== Main Layout ===== */
.flex-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 20px 0;
}

.column-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ===== Box Styles ===== */
#box1, #box2, #box3 {
    display: flex;
    align-items: center; 
    justify-content: center;
    background: white;
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#box1:hover, #box2:hover, #box3:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

#box1 {
    width: 50vw;
    height: 250px;
}

#box2 {
    width: 50vw;
    height: 300px;
    position: relative;
}

.mol-container {
display: flex;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: none;
  position: relative;
}

#box3 {
    width: 50vw;
    height: 45px;
    background: #f0f4f8;
    font-weight: 600;
}

/* ===== Questions Section ===== */
.questions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.question-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    padding: 12px;
    width: 160px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.question-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Question header */
.option_header {
    font-weight: bold;
    color: #2563eb; /* Blue 600 */
    text-align: center;
    padding: 6px;
    border-bottom: 2px solid #e5e7eb;
    font-size: 14px;
}

.button-88 {
    background-color: #2563eb;
    color: white;
    border: 0px;
    font-size: 16px;
    padding: 10px 10px;
    border-radius: 12px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    
}

.button-88:hover {
    background-color: rgb(139, 139, 139);
    border: 1px solid rgb(17, 0, 255);
}

#next_button {
    background-color: #058009;
    color: white;
    border: 0px;
    font-size: 16px;
    padding: 10px 100px;
    border-radius: 12px;
    justify-items: center;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.next_bu {
    display: flex;
    justify-content: center;
}
