.font20{
    font-size: 20px ;
  }
  
  .title{ 
    text-decoration: underline;
}
.softcontent{
  font-size: 16px !important;
  padding-top: 20px;
}
.ill-img-1{
  float: right;
  padding: 0;
  position: relative;
  margin: 10px;
  right: 0;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
     }
 .ill-img-2{
  width:100%;
  float: left;
  padding: 0;
  position: relative;
  margin: auto;
  margin-top: 50px;
  right: 0;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
     }
 .resource-title{
   text-decoration:underline;
 }
 .carousel-inner {
  width:100%;
  max-height: 100%;
}
.carousel.slide{
  width:700px;
}
.margin-buffer{
  margin-bottom:20px;
}

.video-table {
  text-align: center;
  margin: 0 auto;
}

.video-table table {
  width: 80%; /* Make the table wider */
  margin: 20px auto;
  border-collapse: collapse;
  border: 1px solid #000000;
}

.video-table td {
  padding: 10px;
}

.video-table button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid #0000;
  background-color: #f4f4f4;
  transition: background-color 0.3s ease;
}

.video-table button:hover {
  background-color: #fac2a1;
}

#video-player {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.custom-alert-box {
  background-color: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  width: 100%;
  min-height: fit-content;
  margin: 1rem auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none; /* Ensure no underline on the box itself */
}
.custom-alert-box h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 1rem;
}
.custom-alert-box .link-text {
  color: #2563eb;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
}
.custom-alert-box .link-text:hover {
  text-decoration: underline;
  color: #1e40af;
}
.custom-alert-box img {
  max-width: 900px;
  height: auto;
  border-radius: 8px;
}
@media (min-width: 992px) {
  .custom-alert-box {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .custom-alert-box .text-content {
    flex: 1;
  }
  .custom-alert-box img {
    margin-left: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .custom-alert-box {
    flex-direction: column;
    text-align: center;
  }
  .custom-alert-box .text-content {
    flex: 1;
  }
  .custom-alert-box img {
    margin-left: 1.5rem;
    max-width: 500px;
  }
}
@media (max-width: 600px) {
  .custom-alert-box {
    flex-direction: column;
    text-align: center;
  }
  .custom-alert-box img {
    margin-top: 1.5rem;
    max-width: 50px;
  }
}
@media (max-width: 480px) {
  .custom-alert-box {
    flex-direction: column;
    text-align: center;
  }
  .custom-alert-box h1 {
    font-size: 1.5rem;
  }
  .custom-alert-box .link-text {
    font-size: 0.875rem;
  }
  .custom-alert-box img {
    margin-top: 1rem;
    max-width: 300px;
  }
}