html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


/* 

Added Custom Styling 

Mainly for forms and validation popups.

*/

/* General form styling */
form {
  margin-bottom: 1.5rem;
}

/* Heading styles */
h1,
h2,
h3 {
  margin-bottom: 1rem;
}

/* Input field styling */
.form-floating {
  margin-bottom: 1rem;
}

.form-floating .form-control {
  padding: 1rem;
}

.form-floating label {
  padding: 0.5rem;
}

/* Validation message styling */
.text-danger {
  color: #dc3545;
  margin-top: 0.25rem;
  font-size: 0.875em;
}

/* Button styling */
.btn-primary,
.btn-outline-primary {
  margin-bottom: 1rem;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
}

.btn-outline-primary {
  color: #0d6efd;
  border-color: #0d6efd;
}

.btn-outline-primary:hover {
  background-color: #0d6efd;
  color: #fff;
}

/* Checkbox styling */
.form-check {
  margin-bottom: 1rem;
}

.form-check-input {
  margin-right: 0.5rem;
}

.form-check-label {
  font-weight: 400;
}

/* Link styling */
a {
  color: #0d6efd;
  text-decoration: none;
}

a:hover {
  color: #0a58ca;
  text-decoration: underline;
}

/* Additional utility classes */
.d-flex {
  display: flex !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-md-0 {
  margin-top: 0 !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.w-100 {
  width: 100% !important;
}

.d-grid {
  display: grid !important;
}


/* Custom class for styling */
.custom-header {
  margin-bottom: 1rem;
  /* Margin bottom of h2 */
}