/* Start custom CSS for html, class: .elementor-element-903c7dc */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    padding: 20px;
}

.course-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.course-container h1 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 28px;
}

.contact-info {
    color: #555;
    font-size: 16px;
    margin-bottom: 30px;
    padding: 15px;
    background: #e8f4f8;
    border-radius: 4px;
    text-align: center;
}

.contact-info a {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.controls {
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.search-box {
    flex: 1;
    min-width: 250px;
}

.search-box input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.search-box input:focus {
    outline: none;
    border-color: #3498db;
}

.filter-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border: 2px solid #3498db;
    background: white;
    color: #3498db;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.filter-btn:hover {
    background: #e8f4f8;
}

.filter-btn.active {
    background: #3498db;
    color: white;
}

.category-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.category-tag {
    padding: 6px 12px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.category-tag:hover {
    background: #e0e0e0;
}

.category-tag.active {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.results-count {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.course-grid {
    display: grid;
    gap: 20px;
}

.course-card {
    border: 1px solid #e0e0e0;
    border-left: 4px solid #3498db;
    padding: 20px;
    border-radius: 4px;
    background: #fafafa;
    transition: all 0.2s;
}

.course-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 12px;
    gap: 15px;
}

.course-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    flex-wrap: wrap;
}

.course-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.course-type {
    background: #3498db;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.course-type.ple {
    background: #9b59b6;
}

/* PENDING - remove when courses are approved */
.pending-badge {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffc107;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}
/* END PENDING */

.course-details {
    display: flex;
    gap: 20px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
}

.detail-label {
    font-weight: 600;
    color: #555;
}

.credit-badge {
    display: inline-flex;
    align-items: center;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
}

.category-badges {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.category-badge {
    background: #fff3e0;
    color: #e65100;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.course-blurb {
    color: #666;
    font-size: 13px;
    margin-top: 12px;
    line-height: 1.5;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.no-results {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 16px;
}

@media (max-width: 768px) {
    .course-container {
        padding: 20px;
    }

    .controls {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        min-width: 100%;
    }
}/* End custom CSS */