/* Style for the custom course start date in WooCommerce product loop */
.course-start-date {
    font-size: 14px;
    color: #007cba; /* WooCommerce blue color */
    font-weight: bold;
    margin-top: 10px;
}

.course-start-date::before {
    content: "\1F4C5 "; /* Unicode for a calendar icon */
    font-size: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

.woocommerce ul.products li.product .course-start-date {
    padding: 5px;
    border: 1px solid #e1e1e1;
    background-color: #f9f9f9;
    border-radius: 4px;
}
