/* CSS for the nexttasks page */

.maingrid         {
                     display: grid;
                     grid-gap: 10px;

                     grid:
                        'nexttaskstable'
                        'projectslink';

                     color: blue;
                  }

.nexttaskstable
                  {
                     grid-area=nexttaskstable;
                  }

.projectslink
                  {
                     grid-area=projectslink;
                     width: 600px;
                     text-align: center;
                     margin-left: auto;
                     margin-right: auto;
                     color : blue;
                  }
