  .button-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-top: 20px;
   
  }

  .button-row a {
    text-decoration: none;
    margin-top:0px !important;
  }

  .button-row a button {
    padding: 10px 10px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background-color: #27AE60;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s;
    
  }
 
.course-image {
    width: 100% !important;
}
.course-card {
    display: flex !important;
    flex-direction: column !important;
    border-radius: 0px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 500px;
    font-family: Arial, sans-serif;
    background-color: white;
}
.star-rating .star {
  font-size: 24px;
  color: #ccc;
  position: relative;
}
.star-rating  {
 margin:13px auto;
}


.star-rating .star.full {
  color: #e8c073;
}

.star-rating .star.half::before {
  content: "★";
  position: absolute;
  left: 0;
  width: 50%;
  overflow: hidden;
  color: #e8c073;
}
@media (max-width: 767px) {
  .button-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem; /* Optional: adds spacing between buttons */
  }

  .button-row a {
    width: 100%;
    text-align: center;
  }

  .button-row a button {
    width: 100%;
    box-sizing: border-box;
    padding: 1rem;
    font-size: 1rem;
  }
}

}