* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


.custom-course-card {
  width: 90%;
  max-width: 400px;
  height: auto;
  margin: auto;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 3px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}


.custom-course-card:hover {
  transform: scale(1.05);
}


.custom-course-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 2px;
  border-radius: 8px;
}

/* term modal styling */
.terms-box {
  background: white;
  max-width: 600px;
  font-size: 14px;
  line-height: 1.7;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.modal-content {
  border-radius: 12px;
}

.btn-info {
  background-color: #00bfff;
  border: none;
}

.btn-info:hover {
  background-color: #009ac7;
}