/* General layout */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
}

/* Main content area grows to fill space */
main {
  flex: 1 0 auto;
}

/* Footer styling */
footer {
  flex-shrink: 0;
}

/* Custom styles */
h1, h2, h3 {
  font-weight: 600;
}

.navbar-brand {
  font-size: 1.3rem;
}

.btn {
  border-radius: 10px;
}

/* For text contrast and cleanliness */
.text-primary {
  color: #0d6efd !important;
}

