.elementor-14032 .elementor-element.elementor-element-ec13ca0{--display:flex;}/* Start custom CSS */#question-tree-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

#breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.question-container, .answer-container {
    margin-bottom: 20px;
}

.answer-list {
    list-style-type: none;
    padding: 0;
}

.answer-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.answer-btn:hover {
    background-color: #e0e0e0;
}

#navigation-area {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

#prev-question, #next-question, #start-over {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#prev-question:hover, #next-question:hover, #start-over:hover {
    background-color: #45a049;
}

.post {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.slide-left {
    animation: slideLeft 0.3s forwards;
}

.slide-right {
    animation: slideRight 0.3s forwards;
}

@keyframes slideLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

@keyframes slideRight {
    from { transform: translateX(0); }
    to { transform: translateX(100%); }
}/* End custom CSS */