/* Courses page specific styles (extracted from inline styles in courses.php) */

body.courses-page {
    background-color: #e0f7fa;
    color: #333;
    min-height: 100vh;
}

.main-content {
    padding: 40px 0;
}

.section-title {
    color: #007bff;
    font-weight: 700;
    margin-bottom: 30px;
}

.course-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    text-align: left;
    height: 100%;
}

.course-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }

.course-card img { width:100%; height:180px; object-fit:cover; border-bottom:1px solid #eee; }

.category-filter .btn { margin:5px; border-radius:20px; padding:8px 20px; font-weight:500; }

/* Footer tweaks if footer present on this page */
.site-footer { margin-top:2rem; }

/* small responsive tweaks */
@media (max-width: 576px) {
    .course-card img { height:140px; }
}
