html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

section.dashboard {
  flex: 1;
  display: flex;
  flex-direction: column;
}

footer.footer {
  margin-top: auto;
}

.dashboard {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

  .job-card {
    transition: all 0.25s ease;
    border: none;
  }

  .job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .input-group:focus-within {
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,.25);
  }