body {
    font-family: 'Inter', sans-serif;
}

/* Flash Messages Colors */
.message.success { background-color: #dcfce7; border-color: #86efac; color: #15803d; }
.message.danger { background-color: #fee2e2; border-color: #fca5a5; color: #b91c1c; }
.message.info { background-color: #dbeafe; border-color: #93c5fd; color: #1d4ed8; }

/* Styles for survey logic UI */
.conditional-question {
    transition: all 0.5s ease-in-out;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}
.conditional-question.visible {
    max-height: 1000px; /* Large enough to not clip content */
    opacity: 1;
    margin-top: 2rem !important; /* space-y-8 */
    padding-bottom: 1rem !important; /* pb-4 */
}
