.menu-square {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.menu-square-btn {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    gap: 10px;
}

.btn-menu-square {
    background-color: #ffff;
    border-radius: 8px;
    padding: 10px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #ccc;
    height: 100px;
    width: 100%;

    & p {
        margin-bottom: 0;
    }

}

.btn-menu-square.active {
    background-color: #003399;

    & p {
        color: #fff !important;
        margin-bottom: 0;
    }
}

.square-content {
    flex: 1;
    border: 1px solid #ccc;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: auto;
    height: 450px;

    & p, h1, h2, h3, h4, h5, h6 {
        margin-bottom: 0;
        line-height: 1.5 !important;
    }
}

.content-section-square {
    display: none;
    overflow: auto;
}

.content-section-square.active {
    display: block;
}

.square-content::-webkit-scrollbar,
.square-content::-webkit-scrollbar-thumb {
    width: 26px;
    border-radius: 13px;
    background-clip: padding-box;
    border: 10px solid transparent;
    color: #9f9f9f;
}

.square-content::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 0 10px;
}