.course-stars-and-rating-container {
    display: flex;
}
.totalReviews {
    display: inline-block;
    margin-right: .5rem;
    color: #999;
    font-weight: 500;
}
/* Stars container */
.starsContainer {
    display: inline-flex;
    gap: 1px; /* Optional spacing between stars */
    font-size: 24px;
}

/* Stars */
.star {
    display: inline-block;
    width: 24px;
    height: 24px;
    clip-path: polygon(
            50% 0%,
            61% 35%,
            98% 35%,
            68% 57%,
            79% 91%,
            50% 70%,
            21% 91%,
            32% 57%,
            2% 35%,
            39% 35%
    ); /* Star shape */
    background: lightgray; /* Default empty star */
    background-size: cover;
}