.recent-box {
  max-width: 640px;
  width: 100%;
  position: relative;
  z-index: 0;
}

.assignment-dot {
  width: 10px;
  height: 10px;
  background-color: #0ea5e9;
  border-radius: 50%;
  margin-right: 8px;
}

.scroll-outer {
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  margin-bottom: -35px;
  cursor: grabbing;
}

.assignment-scroll {
  display: flex;
  gap: 16px;
  /*padding-bottom: 12px;*/
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  user-select: none;
}

.assignment-card {
  flex: 0 0 240px;
  scroll-snap-align: center;
  background-color: #2b3f5f;
  color: #ffffff;
  border-radius: 16px;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.assignment-card:hover {
  background-color: #3a527b;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.assignment-card:active {
  transform: translateY(0);
  box-shadow: none;
}

