/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.container {
  margin-top: 10%;
  padding-top: 100px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}

h1, h2, h3 {
  color: #4CAF50;
  margin-bottom: 100px;
}

p {
  font-size: 16px;
  color: #555;
}

a {
  color: #4CAF50;
  text-decoration: none;
}

a:hover {
  color: #45a049;
}

/* Header Styling */
header {
  background-color: #333;
  color: white;
  padding: 10px 0;
  text-align: center;
}

header a {
  color: white;
  font-size: 18px;
  margin: 0 15px;
}

header a:hover {
  color: #4CAF50;
}

/* Footer Styling */
footer {
  background-color: #333;
  color: white;
  padding: 10px 0;
  text-align: center;
  margin-top: 20px;
}

/* Form Styling */
form {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

input[type="number"], input[type="text"], input[type="password"], select {
  font-size: 16px;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #45a049;
}

button:disabled {
  background-color: #ddd;
  cursor: not-allowed;
}

/* Success/Failure Messages */
.success {
  color: green;
  font-size: 18px;
  margin-bottom: 10px;
}

.error {
  color: red;
  font-size: 18px;
  margin-bottom: 10px;
}

/* Table Styles */
table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}

table th, table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

table th {
  background-color: #4CAF50;
  color: white;
}

table tr:hover {
  background-color: #f1f1f1;
}

/* Pagination (optional) */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pagination a {
  margin: 0 5px;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.pagination a:hover {
  background-color: #45a049;
}

.pagination a.disabled {
  background-color: #ddd;
  cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
      width: 90%;
  }

  form {
      padding: 15px;
  }

  input, select, textarea {
      font-size: 14px;
  }

  button {
      font-size: 14px;
  }
}

@media (max-width: 480px) {
  header {
      font-size: 14px;
  }

  form {
      padding: 10px;
  }

  input, select, textarea {
      font-size: 12px;
  }

  button {
      font-size: 14px;
  }
}


/* logo */

.logo-container {
  margin-bottom: 20px;
}

.logo {
  width: 150px; /* Adjust the logo size */
}

.login-container {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
