body {
    font-family: Arial, sans-serif;

  }

input[type="text"] {
   width: 80%; /* Makes the input field span the full width of its container */
  padding: 4px 10px; /* Adds space inside the text field */
  margin: 8px 0; /* Adds vertical space between the input and other elements */
  box-sizing: border-box; /* Ensures padding/border are included in the width calculation */

  /* Appearance */
  background-color: #f8f8f8; /* Light gray background */
  border: 2px solid #ccc; /* A standard border */
  border-radius: 40px; /* Rounded corners */
  color: #333; /* Text color */
  font-size: 16px; /* Font size */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 16px;
}

th,
td {
    border: 1px solid #ddd;
   
}

th {background-color: navy;
    color:white;
    font-weight: bold;
    
    


}
.loginbtn{ text-decoration:none;
    color: white;
    padding: 50px;
  
  
}


#header_index {
    background-color: navy;
    color:white;
    font-weight: bold;
    padding: 10px;
   position: sticky;
            top: 0; 
            z-index: 1000; 
}