.dashboardHeader {
  width: 100%;
  height: 172px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  /* margin-bottom: 10px; */
  position: relative;
  overflow: hidden;
  /* background-image: url("../images/csc131.jpg"); */
  background-size: cover;
  background-position: center;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
  transition: height 0.3s ease;
  border-bottom: 1px solid rgb(210, 225, 255);
  z-index: 1;
}

.dashboardHeader::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.dateWeather {
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.leftHeaderSection {
  padding: 5px 0;
  margin: 10px;
}

.slideshow {
  position: relative;
  padding: 5px;
  color: white;
  border-radius: 8px;
  margin: 5px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
  z-index: 2;
}

.slideshow h1 {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 5px;
}

.tasks-feedback {
  display: flex;
}

#announcements,
#announcements-instructors {
  width: 500px;
  height: 162px;
  background: linear-gradient(135deg,
      rgba(210, 225, 250, 0.5) 5%,
      rgba(50, 100, 225, 0.6) 50%,
      rgba(210, 225, 250, 0.5) 100%);
}

#tasks,
#gradingTasks,
#feedback,
#activity {
  width: 280px;
  height: 162px;
}

#tasks,
#gradingTasks {
  background: linear-gradient(135deg,
      rgba(50, 100, 225, 0.5) 10%,
      rgba(210, 225, 250, 0.7) 100%);
  backdrop-filter: blur(2px);
}

#feedback,
#activity {
  background: linear-gradient(135deg,
      rgba(50, 100, 225, 0.5) 10%,
      rgba(210, 225, 250, 0.7) 100%);
  backdrop-filter: blur(2px);
}

.tasks-card {
  padding: 5px !important;
  margin: 5px;
  color: white;
  list-style-type: none;
  letter-spacing: 1px;
  transform-style: preserve-3d;
  transform: rotateY(10deg);
  transition: transform 0.3s ease !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.7);
  font-size: 10px;
  border-radius: 5px !important;
}

#tasks .tasks-card,
#gradingTasks .tasks-card {
  background-color: rgba(50, 100, 225, 0.7);
}

#feedback .tasks-card,
#activity .tasks-card {
  background-color: rgba(210, 225, 250, 0.3);
}

.tasks-card span {
  font-size: 11px;
}

.tasks-card p {
  font-size: 11px;
  margin: 4px;
}

.tasks-card:hover {
  transform: rotateY(0deg) scale(1.0020);
  cursor: pointer;
}

.no-data-carousel {
  margin: 65px;
  text-align: center;
}

.highlight {
  font-weight: bold;
  font-size: 12px;
  color: yellow;
}

.announcement-description {
  font-weight: normal;
  font-size: 11px;
  border-left: 1px Solid white;
  padding-left: 5px;
  margin: 0 0 0 10px;
}

.announcement-date {
  font-size: 10px;
  font-weight: normal;
  font-style: italic;
  color: yellow;
  text-align: right;
}

.course-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
}

.course-card {
  width: 240px;
  height: 270px;
  margin: 20px;
  margin-top: 40px;
  border-radius: 10px;
  color: #fffff0;
  position: relative;
  overflow: hidden;
  box-shadow: 5px 3px 15px rgba(0, 0, 0, 0.6);
  animation: bounce 2.5s ease;
  transition: transform 0.5s ease;
  border: 2px solid rgb(50, 100, 225, 0.7);
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

.course-card:hover {
  transform: rotateY(0deg) scale(1.035);
  cursor: pointer;
}

.course-image {
  height: 60%;
  background-size: cover;
  background-position: center;
  box-shadow: 2px 5px 10px black;
}

.course-info {
  height: 40%;
  padding: 10px 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  font-size: 15px;
  background: linear-gradient(135deg,
      rgba(50, 100, 225, 0.7) 60%,
      rgba(210, 225, 250) 100%);
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.course-time {
  font-size: 13px;
}

.quarter-heading {
  width: 93%;
  display: flex;
  align-items: center;
  margin: 30px 0 20px 0;
  font-size: 15px;
  text-align: center;
  color: rgb(50, 100, 225);
}

.line {
  flex-grow: 1;
  height: 1.5px;
  background-color: rgb(50, 100, 225);
}

.quarter-name {
  margin: 0 10px;
}