/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background: linear-gradient(to right, #e0f7fa, #ffffff);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
  }
  
  /* Header Styling */
  header {
    background-color: #06c80d;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  /* Navigation */
  nav {
    margin-top: 10px;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: #ffeb3b;
  }
  
  /* Container */
  .container {
    max-width: 1000px;
    margin: 30px auto;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  }
  
  /* Headings */
  .container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #09b209;
  }
  
  /* Form Styling */
  form {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  form input {
    padding: 10px 15px;
    border: 1px solid #21c904;
    border-radius: 5px 0 0 5px;
    outline: none;
    width: 250px;
    font-size: 1rem;
  }
  
  form button {
    padding: 10px 20px;
    border: none;
    background-color: #0eaf1f;
    color: #fff;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    transition: background-color 0.3s;
  }
  
  form button:hover {
    background-color: #08cf08;
  }
  
  /* Table Styling */
  table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
  }
  
  table th, table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
  }
  
  table th {
    background-color: #0ebf23;
    color: #fff;
    text-transform: uppercase;
  }
  
  table tr:hover {
    background-color: #b3e5fc;
    transition: background-color 0.3s;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    form {
      flex-direction: column;
      align-items: center;
    }
    
    form input {
      width: 80%;
      margin-bottom: 10px;
      border-radius: 5px;
    }
  
    form button {
      border-radius: 5px;
      width: 50%;
    }
  }