/* styles.css */

/* Body styles */
body {
    font-family: Arial, sans-serif;
  }
  
  /* Container styles */
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Title styles */
  h1 {
    text-align: center;
  }
  
  /* Textarea styles */
  #inputText {
    width: 20%;
    height: 15px;
  }
  /* Button styles */
  button {
    padding: 8px 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  
  /* Input styles */
  input[type="text"] {
    width: 30%;
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
  }
  
  /* Range slider styles */
  input[type="range"] {
    width: 100%;
  }
  
  /* Table styles */
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }
  
  th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  
  /* Table header styles */
  th {
    background-color: #f2f2f2;
  }
  
  /* Hide table row styles */
  tr.hide {
    display: none;
  }

  /*fixed navbar*/
  .navbar {
    overflow: hidden;
    position: fixed;
    background-color: #e6e6e6;
    top: 0;
    width: 100%;
  }
  
  .navbar a {
    float: left;
    display: block;
  }
  
  .navbar a:hover {
    background: #ddd;
  }
  
  .main {
    padding: 16px;
    margin-top: 10%;
    height: 1500px; /* Used in this example to enable scrolling */
  }
/*sub heading*/
h3 {
margin: px5;
}

/*search input*/
