
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff9c4;
  color: #333;
}

h1, h2, h3 {
  color: #ffb300;
  font-weight: 600;
}

.module-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  margin: 40px auto;
  max-width: 1000px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.button {
  display: inline-block;
  background-color: #ffd54f;
  color: #333;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  margin: 8px 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.button:hover {
  background-color: #ffb300;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
table th, table td {
  padding: 12px;
  border: 1px solid #ccc;
}
table th {
  background-color: #fff3b0;
  font-weight: bold;
  text-align: left;
}
table td {
  background-color: #fffde7;
}

a {
  color: #0077cc;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
