body {
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(135deg, #ffe0eb 0%, #fff9fb 100%);
  color: #52344d;
  margin: 0;
  padding: 0;
  text-align: center;
}

/*  Navbar  */
nav {
  background: linear-gradient(90deg, #ffaacb 0%, #ffc8dd 100%);
  color: white;
  padding: 14px 0;
  margin-bottom: 30px;
  box-shadow: 0 3px 8px rgba(255, 150, 185, 0.35);
  border-bottom: 2px solid #ffd6e8;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  margin: 0 18px;
  transition: transform 0.15s ease, opacity 0.25s ease;
  letter-spacing: 0.4px;
}

nav a:hover {
  opacity: 0.85;
  transform: scale(1.08);
}

/*  Headings  */
h1, h2, h3 {
  color: #c23875;
  margin-bottom: 10px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(255, 220, 235, 0.7);
}

h1 {
  font-family: 'Caveat', cursive;
  font-size: 2.4rem;
  color: #d94a8c;
  margin-top: 0.5em;
}

/*  Forms  */
form {
  background-color: #fff0f7;
  display: inline-block;
  padding: 25px 32px;
  border-radius: 18px;
  box-shadow: 0 5px 18px rgba(255, 155, 185, 0.25);
  border: 2px solid #ffd6e8;
  margin-bottom: 40px;
}

form label {
  color: #b13d7a;
  font-weight: 500;
}

form input[type="text"],
form input[type="number"] {
  padding: 10px;
  margin: 6px 8px;
  border: 1px solid #ffc8dd;
  border-radius: 10px;
  background-color: #fffafd;
  color: #52344d;
  font-size: 0.95rem;
}

form input[type="submit"] {
  background-color: #ff9aba;
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.3s ease, transform 0.1s ease;
}

form input[type="submit"]:hover {
  background-color: #ff7ca2;
  transform: scale(1.05);
}

/* --- Tables --- */
table {
  margin: 25px auto;
  border-collapse: collapse;
  width: 90%;
  background-color: #fff8fa;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(255, 155, 185, 0.25);
}

th {
  background-color: #ffb6d2;
  color: white;
  padding: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

td {
  padding: 12px;
  border-bottom: 1px solid #ffe4ef;
  color: #70395f;
}

tr:nth-child(even) {
  background-color: #fff0f5;
}

tr:hover {
  background-color: #ffe3ef;
  transition: background 0.25s ease;
}

/*  Description Column  */
td:last-child {
  font-weight: 600;
  color: #b13d7a;
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
}

/*  Paragraphs  */
p {
  color: #70395f;
  margin: 8px 0;
  line-height: 1.6;
}

/*  Inputs focus  */
input:focus {
  outline: 2px solid #ffb6d2;
  background-color: #fffafd;
}

/*  Responsive  */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  nav a {
    margin: 0 10px;
    font-size: 14px;
  }
  form {
    width: 85%;
  }
  table {
    width: 95%;
    font-size: 13px;
  }
}
