/* body {
    font-family: Arial, sans-serif;
}

h1 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
} */

.journey-container {
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
}

.journey-stage {
    display: inline-block;
    width: 350px;
    vertical-align: top;
    white-space: normal;
    padding: 0 15px;
}

.stage-header {
    background-color: #CDE4FF;
    border-radius: 10px;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.stage-title {
    color: #1e1e1e;
    font-weight: 500;
    font-size: 1rem;
    font-family: "Sora", sans-serif;
}

.stage-description {
    color: #333;
    margin-bottom: 0;
}

.stage-header {
    height: 50px; /* Fixed height for stage headers */
    display: flex;
    align-items: center;
}

.section {
    height: 100px; /* Fixed height for each section */
    display: flex;
    flex-direction: column;
}

.section-title {
    flex-shrink: 0;
}

.section-content {
    overflow-y: auto; /* Allow scrolling if content exceeds height */
    flex-grow: 1;
}

/* Optional: Add these for better scrollbars in the section content */
.section-content::-webkit-scrollbar {
    width: 4px;
}

.section-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.section-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.section-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}


.section {
    margin-bottom: 20px;
}

.section-title {
    font-weight: 600;

}

.section-content {
    color: #333;
}

.pain-point {
    color: #dc3545;
}

.opportunity {
    color: #198754;
}

.opportunity strong {
    font-weight: 600;
}

/* For better scrollbar appearance */
.journey-container::-webkit-scrollbar {
    height: 8px;
}

.journey-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.journey-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.journey-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .journey-stage {
        width: 280px;
    }
}