/* ----------------------------------------
   Base & General Styling (Consistent)
   ---------------------------------------- */
body { font-family: 'Open Sans', sans-serif; line-height: 1.6; color: #333; padding-top: 20px; }
.tasks-heading { text-align: center; font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; color: #444; }
.v-tabs ul { display: flex; overflow-x: auto; white-space: nowrap; list-style: none; padding: 0; margin: 0 3%; border-bottom: 1px solid #ddd; }
.v-tabs li { display: inline-block; margin: 0; }
.v-tabs a { display: inline-block; padding: 0.75rem 1.25rem; text-decoration: none; color: #333; font-weight: 500; }
.v-tabs li.active > a { color: #3273dc; border-bottom: 3px solid #3273dc; }
.subheading-box { background-color: #f7fdf7; border-left: 4px solid #3c763d; padding: 0.75rem 1rem; margin: 1rem 3% 1.5rem 3%; border-radius: 4px; }
.subheading-box .title { color: #3c763d; font-size: 1.25rem; margin: 0; font-weight: 600; }
.v-datalist-container { border: 2px solid #8dc63f; border-radius: 8px; padding: 1rem; background-color: #fafafa; }
.v-datalist-title, .v-datalist-subtitle { margin-bottom: 0.75rem; padding-bottom: 0.75rem; border-bottom: 1px solid #eee; text-align: center; }
.white-boxed-panel { background-color: #fff; border: 1px solid #dbdbdb; border-radius: 6px; padding: 1.25rem; margin-bottom: 1.5rem; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07); }

/* ----------------------------------------
   NEW STYLES FOR THIS EXPERIMENT
   ---------------------------------------- */
.problem-text {
    font-size: 1.1em;
    padding: 1rem;
    text-align: center;
    background-color: #f0f5ff;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}
.problem-text strong {
    font-family: 'Courier New', Courier, monospace;
}

.tile-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    min-height: 60px; /* Ensure container doesn't collapse */
    padding: 0.5rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.tile {
    background-color: #3273dc; /* Bulma Primary Blue */
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

#user-collection .tile {
    background-color: #23d160; /* Bulma Success Green */
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.observations-content {
    font-size: 1.05em;
    padding: 1rem;
    text-align: center;
}

.feedback-correct {
    color: #23d160;
    font-weight: bold;
}

.feedback-incorrect {
    color: #ff3860;
    font-weight: bold;
}