/* CSS Document */
body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #F0F2F5;
    }

    .menu-toggle {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background-color: #C0C0C0;
      border: none;
      padding: 0.5rem 1rem;
      font-weight: bold;
      cursor: pointer;
      border-radius: 5px;
    }

    .menu {
      height: 100%;
      width: 250px;
      position: fixed;
      top: 0px;
      right: -250px;
      background-color: #C0C0C0;
      overflow-x: hidden;
      transition: 0.3s;
      padding-top: 4rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
      box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    }

    .menu.open {
      right: 0;
    }

    .menu a {
      text-decoration: none;
      color: #333;
      font-weight: bold;
      width: 80%;
      text-align: center;
      padding: 0.8rem;
      border-radius: 5px;
    }

    .menu a:hover {
      background-color: #4A6D8C;
      color: white;
    }

    .close-btn {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background-color: #4A6D8C;
      color: white;
      border: none;
      padding: 0.4rem 0.8rem;
      font-size: 14px;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
    }


