.sidebar {
  position: sticky;
  top: 90px;
}

.sidebar .card {
  border-radius: 14px;
  transition: all 0.25s ease;
}

.sidebar .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.ad-card {
  background: #fff;
}

/* EMPLOYER CARD */
.employer-card {
  background: linear-gradient(135deg, #1f4e79, #228B22);
  color: #fff;
}

/* BRAND CARD */
.brand-card {
  background: linear-gradient(135deg, #ffffff, #f6f9ff);
  border-radius: 16px;
}

.brand-logo {
  max-height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.1));
}

/* POST JOB BUTTON (FINAL FIXED VERSION) */
.post-job-btn {
  background-color: rgb(107, 70, 193);
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px;
  transition: all 0.25s ease;
}

.post-job-btn:hover {
  background-color: rgb(90, 60, 170);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(107, 70, 193, 0.3);
}

/* MODAL */
.modal-content {
  border-radius: 16px;
}

.modal-header {
  border-bottom: 1px solid #eee;
}

/* MOBILE */
@media (max-width: 992px) {
  .sidebar {
    position: static;
  }
}

.modal.fade .modal-dialog {
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.modal.show .modal-dialog {
  transform: translateY(0);
}