        body {
            font-family: Arial, sans-serif;
            margin: 0;
            display: flex;
        }

        .left-nav {
            width: 200px;
            background-color: #2c3e50;
            color: #ecf0f1;
            height: 100vh;
            align-items: center;
            padding: 20px 10px;
           flex-direction: column;
        }

.main-content {
           /* margin-left: 200px;*/
            width: calc(100% - 200px);
        }
        /* Title bar */

        .header {
            color: #34495e;
            display: flex;
            align-items: center;
            height: 100px;
            padding: 15px;
            text-align: left;
            font-size: 40px;
        }

.header img {
  width: 125px;
  height: auto;
  margin-right: 15px;
}

.header h1 {
  margin: 0;
  font-size: 36px;
}

        /* Content divs */
        .container {
            padding: 5px;
            box-sizing: border-box;
            gap: 20px;
            margin-top: 10px;
        }

        .containertitle {
          font-size: 14px;
          margin-bottom: 5px;
        }

.grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 5px;
  width: 90%;
}

        .content {
          /*  background-color: #e8e8e8; */
            padding: 5px;
            text-align: center;
            border-radius: 5px;
           /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
        }



/*
        .content .team {
          flex: 1;
          flex-wrap: wrap;
          background-color: #eeffd4;
          padding: 20px;
          border-radius: 10px;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .content .teamrow {
          width: 100%;
        }
        */

        .profile {
            text-align: center;
            margin-bottom: 20px;
        }
        .profile img {
            width: 50px;
            height: 50px;
          /*  border-radius: 50%;
            border: 2px solid #ecf0f1;*/
        }

        .profile h3 {
            margin: 10px 0 5px;
            font-size: 18px;
        }
        .profile p {
            margin: 0;
            font-size: 14px;
            color: #bdc3c7;
        }
        .nav-links {
            width: 100%;
        }
        .nav-links a {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #ecf0f1;
            padding: 10px 20px;
            margin: 5px 0;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: #34495e;
        }
        .nav-links .icon {
            margin-right: 10px;
            font-size: 18px;
        }

#selectclass {
  position: relative;
  width: 100%;
  float: left;
}

#divRosterItem {
  width: 30%;
}


#ulRoster {
  list-style-type: none;
  height: 100px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

#tblRoster {
  text-align:  left;
  /*width: 100%;*/
}

.tablename {
  width: 150px;
}



/* LOGIN  / SIGNUP PAGE */


        /* Form styling */
        .form-container {
            background-color: rgba(255, 255, 255, 0.85);
            padding: 20px 30px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            text-align: center;
            width: 30%;
            margin-left: 35%;
            margin-right: 35%;
            margin-top:10px;
        }

        .form-container h2 {
            margin-bottom: 10px;
            color: #333;
        }

        .form-container input {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        .form-container button {
            width: 100%;
            padding: 10px;
            background-color: #007BFF;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
        }

        .form-container button:hover {
            background-color: #0056b3;
        }

        .box1 h2 {
          float: left;
        }

        .box1 h3 {
          float: left;
        }

        .box1 button {
          float: right;
        }

        .hideit {
          display: none;
        }

        .error {
          color: red;
          font-weight: bold;
        }