html, body {
  height: 100%;
  margin: 0;
  background-color: pink;
  background-image: url('piggy.png');
  background-repeat: repeat;
  background-size: cover;
}

.banner {
      background-color: #000000d2; /* Change color */
      color: rgb(0, 0, 0);
      text-align: center;
      color: #ff98c8;
      padding: 1px;
      font-size: 24px;
      font-weight: bold;
	    margin: 0px;
    }

.menu-btn {
      position: fixed;
      top: 35px;
      left: 15px;
      z-index: 1001;
      background: #333;
      color: white;
      border: none;
      padding: 10px 15px;
      font-size: 18px;
      cursor: pointer;
      border-radius: 10px;
    }

    /* Sidebar menu */
    .side-menu {
      position: fixed;
      top: 0;
      left: -250px; /* hidden off screen */
      width: 250px;
      height: 100%;
      background: #222;
      color: white;
      padding-top: 85px;
      transition: 0.3s;
      z-index: 1000;
    }

    .side-menu a {
      display: block;
      padding: 15px 20px;
      color: white;
      text-decoration: none;
      transition: 0.2s;
    }

    .side-menu a:hover {
      background: #444;
    }

    /* Show menu when active */
    .side-menu.active {
      left: 0;
    }

    .logo {
      font-size: 20px;
      font-weight: bold;
    }

    /* User icon */
    .user-icon {
      cursor: pointer;
      position: absolute;
      top: 35px;
      right: 15px;
    }

    .user-icon img {
      width: 35px;
      height: 35px;
      border-radius: 50%;
    }
  

.banner1 {
      background-color: #00000082; /* Change color */
      color: rgb(0, 0, 0);
      text-align: center;
      color: #ff98c8;
      padding: 20px;
      font-size: 24px;
      font-weight: bold;
	  border-radius: 10px;
	  margin: 10px;
    }

.table-container {
  display: flex;
  justify-content: space-between; /* Distribute extra space evenly */
  flex-wrap: wrap; /* Optional: allows wrapping on smaller screens */
  gap: 20px; /* Optional: spacing between boxes */
}

.table-box {
  background-color: #00000082;
  border-radius: 20px;
  padding: 20px;
  cursor: pointer;
  text-align: center; /* Keep text centered */
  flex: 1; /* Make all boxes grow equally */
  min-width: 120px; /* Optional: prevent boxes from being too small */
  max-width: 200px; /* Optional: limit box size */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

a:link {
		color: #ff98c8; /*unvisted link*/
    text-decoration: none;
	}

	a:visited {
		color: #ff98c8; /* Visited link */
    text-decoration: none;
		}

	a:hover {
		color: #ff98c8; /* When mouse hovers over */
		}

    /* Login button */
    .login-btn {
      background: #333;
      color: white;
      border: none;
      padding: 8px 15px;
      font-size: 16px;
      cursor: pointer;
      border-radius: 6px;
      text-decoration: none;
      position: fixed;
      top: 35px;
      left: 1840px;
    }

    .login-btn:hover {
      background: #333;
    }