/* body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    text-align: center;
}

form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 50%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input,
select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.btn {
    background-color: #007bff !important;
    color: white !important;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.btn:hover {
    background-color: #0056b3 !important;
}

.table {
    margin-top: 20px;
    border-radius: 5px;
    overflow: hidden;
}

th,
td {
    padding: 10px;
    text-align: center;
}

th {
    background-color: #007bff;
    color: white;
} */
:root {
  --primary-color: #007bff;
  --primary-hover: #0056b3;
  --bg-color: #f8f9fa;
  --text-color: #333;
  --border-radius: 10px;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background-color: var(--bg-color);
  text-align: center;
  color: var(--text-color);
  margin: 0;
  padding: 20px;
}

/* Form Styling */
form {
  background: white;
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.3s ease-in-out;
}

form:hover {
  transform: scale(1.02);
}

/* Input Fields */
input,
select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  font-size: 16px;
  transition: border-color 0.3s;
}

input:focus,
select:focus {
  border-color: var(--primary-color);
  outline: none;
}

/* Button */
.btn {
  background-color: var(--primary-color) !important;
  color: white !important;
  border: none;
  cursor: pointer;
  padding: 12px;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
  background-color: var(--primary-hover) !important;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

Table
.table-container {
  overflow-x: auto;
  margin-top: 20px;
}

table {
  width: 100%;
  max-width: 800px;
  margin: auto;
  border-collapse: collapse;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

th,
td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

