/* body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f0f4f8;
    margin: 30px;
    color: #333;
}

h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

input {
    padding: 10px;
    margin: 5px 10px 15px 0;
    border: 2px solid #3498db;
    border-radius: 5px;
    font-size: 16px;
    width: 180px;
    transition: border-color 0.3s ease;
}

input:focus {
    border-color: #2980b9;
    outline: none;
}

button {
    background-color: #3498db;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 5px;
    box-shadow: 0 4px 6px rgba(52, 152, 219, 0.4);
}

button:hover {
    background-color: #2980b9;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
}

th,
td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}

th {
    background-color: #3498db;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

tr:hover {
    background-color: #f1f9ff;
}

@media (max-width: 600px) {
    input {
        width: 100%;
        margin-bottom: 10px;
    }

    button {
        width: 100%;
        margin-top: 10px;
    }
} */



    body {
      font-family: Arial, sans-serif;
      background: #f7f9fc;
      padding: 20px;
      max-width: 700px;
      margin: auto;
    }
    h2 {
      text-align: center;
      color: #2c3e50;
    }
    select, input, button {
      padding: 8px 12px;
      margin: 5px 5px 15px 0;
      font-size: 16px;
      border-radius: 5px;
      border: 1.5px solid #3498db;
      width: 150px;
      transition: border-color 0.3s;
    }
    select:focus, input:focus {
      border-color: #2980b9;
      outline: none;
    }
    button {
      background: #3498db;
      color: white;
      border: none;
      cursor: pointer;
      width: 120px;
      box-shadow: 0 4px 6px rgba(52, 152, 219, 0.4);
    }
    button:hover {
      background: #2980b9;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
      background: white;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      border-radius: 8px;
      overflow: hidden;
    }
    th, td {
      padding: 12px 15px;
      border-bottom: 1px solid #ddd;
      text-align: left;
    }
    th {
      background: #3498db;
      color: white;
      text-transform: uppercase;
    }
    tr:hover {
      background: #f1f9ff;
    }