/* Hide scrollbar for textarea */
#problemInput {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

#problemInput::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

/* Smooth textarea expansion */
#problemInput {
    transition: height 0.1s ease;
}

.mermaid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.mermaid svg {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
}

#decisionTreeContainer,
#prosConsContainer,
#mindMapContainer {
    height: 85vh;
}

/* Мобильные устройства */
@media (max-width: 768px) {
    #decisionTreeContainer,
    #prosConsContainer,
    #mindMapContainer {
        height: 75vh;
    }

    .diagram-wrapper {
        padding: 0.5rem !important;
    }

    h2 {
        font-size: 1.25rem;
    }
}
