/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fdfdfd;
  color: #333;
  margin: 0;
  padding: 0;
}

h1 {
  font-weight: 600;
  color: #2c3e50;
}

.card {
  border: none;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.01);
}

footer {
  font-size: 0.95rem;
  background: #2c3e50;
  color: #fff;
  padding: 15px 0;
}

.btn-success {
  background-color: #28a745;
  border-color: #28a745;
  font-weight: 500;
}

.btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

.alert {
  font-weight: 500;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}
