/* Course List Specific Styles */
.course-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.course-list-header {
    text-align: center;
    margin-bottom: 40px;
}

.course-list-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #3B82F6;
}

.course-list-subtitle {
    font-size: 1.2rem;
    color: #646970;
    margin-bottom: 20px;
}

.user-quick-access {
    margin-top: 20px;
}

.my-courses-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #3B82F6;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.my-courses-link:hover {
    background: #1e5b8c;
    color: white;
}

.course-filters {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.filters-form {
    display: grid;
    grid-template-columns: 1fr 200px auto;
    gap: 20px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-weight: 500;
    color: #3B82F6;
}

.filter-group input,
.filter-group select {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

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

.default-course-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.default-course-image svg {
    display: none;
}