.html {
  scroll-behavior: smooth;
}
.container {
            max-width: 600px;
            text-align: center;
            border: 0;
        }
.div2 {
   border: 0.1px solid black ;
   margin: 5px 5px 5px 5px;
   width: 100px;
   height: 300px;
   padding: 10px;
   border-radius: 10px;
   box-shadow: 0px 0px 20px 1px #888888;
}
.div3 {
   border: 0.1px solid black ;
   margin: 2px 2px 5px 5px;
   width: 22%;
   height: 20%;
   padding: 1px;
   border-radius: 10px;
   box-shadow: 0px 0px 20px 1px #888888;
}
      .table-responsive {
           width: 100%;
            margin: auto;
            max-width: 900px; /* Restrict the max width */
            margin: 0 auto; /* Center the div */
          -webkit-overflow-scrolling: touch; /* Smooth scrolling on mobile */
        }
        
            .body {
            font-family: sans-serif;
            justify-content: center;
            align-items: center;
            min-height: 100vh;

        }

        
        .table {
           border-collapse: collapse;
           width: 900px;
       
        }

        .th, .td {
            border: 0px solid #ddd;
            padding: 8px;
            text-align: left;
        }

        .th {
            background-color: #f2f2f2;
        }

        .content {
            margin-left: 0%; /* Adjust for sidebar width */
            padding: 10px 0;
        }
body {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0; 
    background-image: url('images/univImg1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

            header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #339bff; /* Adjust as needed */
    z-index: 1000;
    padding: 10px;
}
            nav ul {
              list-style: none;
              margin: 0;
              padding: 0;
              text-align: center;
            }

            nav li {
              display: inline-block;
              margin: 0 20px;
            }

            nav a {
              color: #fff;
              text-decoration: none;
            }

        .container {
              width: 80%;
              margin: 0 auto;
              padding: 20px;
              border: 1px solid #ccc;
            }

         .search-container {
            display: flex;
            flex-direction: column;
            width: 75%;
            align-items: center;
            background-color: #fff;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0.50, 0.80);
        }
        
            .search-container input[type="text"] {
      flex: 1; /* Allow inputs to grow and share space */
      padding: 10px 15px;
      border: 1px solid #ccc;
      border-radius: 5px; /* Rounded corners for inputs */
      font-size: 1rem;
      box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle inner shadow */
    }

        .input-group {
            display: flex;
            margin-bottom: 20px;
        }

        .input-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 3px;
            margin-right: 10px;
        } 

        .search-button {
            background-color: #007bff;
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 3px;
            cursor: pointer;
        }
        
       .h2 {
           color:#007bff;
           font-size: 24px;
       }

     .thisOne {
         font-size: 24px;
         font-weight: bold;
     }
      .@media (max-width: 768px) 
      {
        table, thead, tbody, th, td, tr {
       display: block;
  }
       
       .button {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      font-size: 16px;
      position: relative;
      cursor: pointer;
    }

    .spinner {
      width: 16px;
      height: 16px;
      border: 2px solid transparent;
      border-top: 2px solid white;
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
      position: absolute;
      display: none;
    }

    .button.loading .spinner {
      display: inline-block;
    }

    .button.loading span {
      visibility: hidden;
    }

    @keyframes spin {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }
    
        .sidebar {
      width: 100px; /* Adjust width as needed */
       background-color: grey; /* Set sidebar color here */
      position: fixed; 
      height: 100%;
      overflow-x: hidden; 
    }
