/* Card UI Components: Test, Series, Job, PDF, Exam Cards */

.ml-job-card {
  background: var(--ml-surface);
  border: 1px solid var(--ml-border);
  border-radius: var(--ml-radius);
  padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ml-job-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--ml-shadow);
  border-color: #cbd5e1;
}

.ml-job-tag {
  background-color: #e0f2fe;
  color: #0369a1;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

/* Test Card */
.ml-test-card {
  background: var(--ml-surface);
  border: 1px solid var(--ml-border);
  border-radius: var(--ml-radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}

.ml-test-card:hover {
  border-color: var(--ml-sky);
  box-shadow: var(--ml-shadow);
}

/* Series Card */
.ml-series-card {
  background: var(--ml-surface);
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.ml-series-card.featured {
  border-color: var(--ml-orange);
}

/* PDF Card */
.ml-pdf-card {
  background: var(--ml-surface);
  border: 1px solid var(--ml-border);
  border-radius: var(--ml-radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
